Skip to content

Instantly share code, notes, and snippets.

@tarzak
Created October 2, 2017 13:45
Show Gist options
  • Save tarzak/0deaa0e57c75e3642fc23171f5514bd7 to your computer and use it in GitHub Desktop.
Save tarzak/0deaa0e57c75e3642fc23171f5514bd7 to your computer and use it in GitHub Desktop.
{
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"plugins": [
"react"
],
"rules": {
"no-debugger": 0,
"no-console": 0,
"new-cap": 0,
"strict": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"eol-last": 1,
"quotes": [2, "single"],
"jsx-quotes": [1, "prefer-single"],
"react/jsx-no-undef": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"semi": 1,
"comma-dangle": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment