From e2d61b82fbde63ecfb7c0229c23316d671beaaf1 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Thu, 29 Dec 2022 13:11:50 -0500 Subject: [PATCH] chore: Remove duplicate config flag Signed-off-by: Adam Harvey --- scripts/check-docs-quality.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check-docs-quality.js b/scripts/check-docs-quality.js index 9c7f444033..10c4b99976 100755 --- a/scripts/check-docs-quality.js +++ b/scripts/check-docs-quality.js @@ -99,7 +99,7 @@ async function main() { if (process.argv.includes('--ci-args')) { process.stdout.write( // Workaround for not being able to pass arguments to the vale action - JSON.stringify(['--config=.github/vale/config.ini', ...files]), + JSON.stringify([...files]), ); return; }