Browse Source

refactor: simplify script/lint.js (#37077)

Co-authored-by: Milan Burda <[email protected]>
Milan Burda 2 years ago
parent
commit
c6203d54d0
1 changed files with 2 additions and 5 deletions
  1. 2 5
      script/lint.js

+ 2 - 5
script/lint.js

@@ -86,11 +86,8 @@ const LINTERS = [{
   roots: ['shell'],
   test: filename => filename.endsWith('.mm') || (filename.endsWith('.h') && isObjCHeader(filename)),
   run: (opts, filenames) => {
-    if (opts.fix) {
-      spawnAndCheckExitCode('python3', ['script/run-clang-format.py', '-r', '--fix', ...filenames]);
-    } else {
-      spawnAndCheckExitCode('python3', ['script/run-clang-format.py', '-r', ...filenames]);
-    }
+    const clangFormatFlags = opts.fix ? ['--fix'] : [];
+    spawnAndCheckExitCode('python3', ['script/run-clang-format.py', '-r', ...clangFormatFlags, ...filenames]);
     const filter = [
       '-readability/braces',
       '-readability/casting',