Skip to content

Instantly share code, notes, and snippets.

@chrisryana
Forked from oroce/package.json
Created August 30, 2021 21:03
Show Gist options
  • Save chrisryana/eff5a44d27719c102717cb64df3e6495 to your computer and use it in GitHub Desktop.
Save chrisryana/eff5a44d27719c102717cb64df3e6495 to your computer and use it in GitHub Desktop.
run eslint only on changed (*.js files) files using pre-commit
{
"scripts": {
"eslint": "LIST=`git diff-index --name-only HEAD | grep .*\\.js | grep -v json`; if [ \"$LIST\" ]; then eslint $LIST; fi"
},
"devDependencies": {
"pre-commit": "0.0.7",
"eslint": "~0.5.1"
},
"pre-commit": [
"eslint"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment