Created
August 11, 2017 23:21
-
-
Save rxgx/d33d1cf96a7ca984206d2f1be9c8bcf9 to your computer and use it in GitHub Desktop.
If ESLint then Prettier
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
{ | |
"eslintConfig": { | |
"parserOptions": { | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"env": { | |
"browser": true, | |
"es6": true, | |
"node": true | |
}, | |
"extends": [ | |
"eslint:recommended", | |
"plugin:react/recommended", | |
"prettier" | |
], | |
"plugins": [ | |
"prettier", | |
"react" | |
], | |
"parser": "babel-eslint", | |
"rules": { | |
"prettier/prettier": [ | |
"error", | |
{ | |
"singleQuote": true, | |
"bracketSpacing": false, | |
"jsxBracketSameLine": true | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment