Skip to content

Instantly share code, notes, and snippets.

@edrpls
Created November 24, 2015 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edrpls/888ed868a72703cc9612 to your computer and use it in GitHub Desktop.
Save edrpls/888ed868a72703cc9612 to your computer and use it in GitHub Desktop.
ESLint Nov 15
{
"rules": {
"no-console": [0],
"strict": [2, "global"],
"no-undef": [
2
],
"indent": [
2,
4
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"globals": {},
"env": {
"node": true,
"browser": true,
"mocha": true
},
"extends": "eslint:recommended",
"plugins": [
"react"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment