Last active
April 8, 2020 00:01
-
-
Save manakuro/14c2b3f62120218aea5fbf8191cdffdb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"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