Skip to content

Instantly share code, notes, and snippets.

@whartonn
Created November 30, 2016 19:22
Show Gist options
  • Save whartonn/3b3fc11cedb3ab76420b443bb151fe5b to your computer and use it in GitHub Desktop.
Save whartonn/3b3fc11cedb3ab76420b443bb151fe5b to your computer and use it in GitHub Desktop.
current configuration
{
"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