-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve JS linting and add option to fix linting errors Fixes: nodejs/node-addon-api#1076 PR-URL: nodejs/node-addon-api#1080 Reviewed-By: Michael Dawson <midawson@redhat.com
- Loading branch information
John French
committed
Nov 15, 2021
1 parent
d9ab6e6
commit 58b2329
Showing
4 changed files
with
89 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/usr/bin/env node | ||
|
||
const spawn = require('child_process').spawnSync; | ||
|
||
const filesToCheck = '*.js'; | ||
const FORMAT_START = process.env.FORMAT_START || 'main'; | ||
|
||
function main (args) { | ||
let fix = false; | ||
while (args.length > 0) { | ||
switch (args[0]) { | ||
case '-f': | ||
case '--fix': | ||
fix = true; | ||
break; | ||
default: | ||
} | ||
args.shift(); | ||
} | ||
|
||
// Check js files that change on unstaged file | ||
const fileUnStaged = spawn( | ||
'git', | ||
['diff', '--name-only', FORMAT_START, filesToCheck], | ||
{ | ||
encoding: 'utf-8' | ||
} | ||
); | ||
|
||
// Check js files that change on staged file | ||
const fileStaged = spawn( | ||
'git', | ||
['diff', '--name-only', '--cached', FORMAT_START, filesToCheck], | ||
{ | ||
encoding: 'utf-8' | ||
} | ||
); | ||
|
||
const options = [ | ||
...fileStaged.stdout.split('\n').filter((f) => f !== ''), | ||
...fileUnStaged.stdout.split('\n').filter((f) => f !== '') | ||
]; | ||
|
||
if (fix) { | ||
options.push('--fix'); | ||
} | ||
const result = spawn('node_modules/.bin/eslint', [...options], { | ||
encoding: 'utf-8' | ||
}); | ||
|
||
if (result.status === 1) { | ||
console.error('Eslint error:', result.stdout); | ||
const fixCmd = 'npm run lint:fix'; | ||
console.error(`ERROR: please run "${fixCmd}" to format changes in your commit | ||
Note that when running the command locally, please keep your local | ||
main branch and working branch up to date with nodejs/node-addon-api | ||
to exclude un-related complains. | ||
Or you can run "env FORMAT_START=upstream/main ${fixCmd}". | ||
Also fix JS files by yourself if necessary.`); | ||
return 1; | ||
} | ||
|
||
if (result.stderr) { | ||
console.error('Error running eslint:', result.stderr); | ||
return 2; | ||
} | ||
} | ||
|
||
if (require.main === module) { | ||
process.exitCode = main(process.argv.slice(2)); | ||
} |