Created
November 30, 2016 19:22
-
-
Save whartonn/3b3fc11cedb3ab76420b443bb151fe5b to your computer and use it in GitHub Desktop.
current configuration
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
Show hidden characters
{ | |
"env": { | |
"browser": true, | |
"es6": true, | |
"node": true | |
}, | |
"extends": "eslint:recommended", | |
"parserOptions": { | |
"ecmaFeatures": { | |
"experimentalObjectRestSpread": true, | |
"jsx": true | |
}, | |
"sourceType": "module" | |
}, | |
"plugins": [ | |
"react" | |
], | |
"rules": { | |
"no-unused-vars": ["warn", { "vars": "all", "args": "after-used" }], | |
"no-console":0, | |
"indent": [ | |
"warn", | |
"tab" | |
], | |
"linebreak-style": [ | |
"warn", | |
"unix" | |
], | |
"quotes": [ | |
"warn", | |
"single" | |
], | |
"semi": [ | |
"error", | |
"always" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment