Skip to content

Instantly share code, notes, and snippets.

@manakuro
Last active April 8, 2020 00:01
Show Gist options
  • Save manakuro/14c2b3f62120218aea5fbf8191cdffdb to your computer and use it in GitHub Desktop.
Save manakuro/14c2b3f62120218aea5fbf8191cdffdb to your computer and use it in GitHub Desktop.
{
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"commit": "git-cz",
"precommit": "lint-staged" // Added
},
...
// Added
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment