Skip to content

Instantly share code, notes, and snippets.

@nielk
Created June 9, 2015 13:20
Show Gist options
  • Select an option

  • Save nielk/723b89bc0468bc99da23 to your computer and use it in GitHub Desktop.

Select an option

Save nielk/723b89bc0468bc99da23 to your computer and use it in GitHub Desktop.
.eslintrc
{
"rules": {
"indent": [
2,
4
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"max-statements":[2, 15],
"max-depth":[1, 2],
"complexity":[2, 5],
"max-len":[2, 65],
"max-params":[2, 1],
"max-nested-callbacks":[2, 0],
"smells/no-switch": 1,
"smells/no-complex-switch-case": 1,
"smells/no-setinterval": 1,
"smells/no-this-assign": 1,
"smells/no-complex-string-concat": 1,
"smells/no-complex-chaining": 1
},
"env": {
"browser": true
},
"globals": {
"$": false,
"angular": false
},
"plugins": [
"smells"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment