Skip to content

Instantly share code, notes, and snippets.

@sathish-spidie
Forked from elijahmanor/.eslintrc
Last active July 6, 2019 14:58
Show Gist options
  • Save sathish-spidie/999118ba64e0b4e5ba36bd35630264c0 to your computer and use it in GitHub Desktop.
Save sathish-spidie/999118ba64e0b4e5ba36bd35630264c0 to your computer and use it in GitHub Desktop.
Add Prettier & ESLint to VS Code with a Create React App
{
"extends": ["react-app", "plugin:prettier/recommended"]
}
{
"scripts": {
"precommit": "pretty-quick --staged"
},
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1"
}
}
{
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"prettier.disableLanguages": [
"js"
],
"files.autoSave": "onFocusChange",
// It fixes some wired {" "} stufs in code.
"eslint.validate": [
"javascript",
"javascriptreact",
{ "language": "typescript", "autoFix": true },
{ "language": "typescriptreact", "autoFix": true }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment