Skip to content

Instantly share code, notes, and snippets.

@Andy-set-studio
Last active July 9, 2017 21:14
Show Gist options
  • Save Andy-set-studio/623e370dc39446aa9f5058c891aad677 to your computer and use it in GitHub Desktop.
Save Andy-set-studio/623e370dc39446aa9f5058c891aad677 to your computer and use it in GitHub Desktop.
ESLINT template
{
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
"quotes": [2, "single", { "allowTemplateLiterals": true }]
},
"plugins": [
"react"
],
"extends": [
"plugin:react/recommended"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment