Skip to content

Commit

Permalink
Merge pull request felixge#71 from pdehaan/patch-1
Browse files Browse the repository at this point in the history
Update deprecated space-in-brackets ESLint rule
  • Loading branch information
pdehaan committed Oct 22, 2015
2 parents 0b94193 + 9571f98 commit f6f65cb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,27 @@
"node": true
},
"rules": {
"array-bracket-spacing": [2, "never"],
"block-scoped-var": 2,
"brace-style": [2, "1tbs"],
"camelcase": 1,
"computed-property-spacing": [2, "never"],
"curly": 2,
"eol-last": 2,
"eqeqeq": [2, "smart"],
"max-depth": [1, 3],
"max-statements": [1, 15],
"max-len": [1, 80],
"max-statements": [1, 15],
"new-cap": 1,
"no-extend-native": 2,
"no-mixed-spaces-and-tabs": 2,
"no-trailing-spaces": 2,
"no-use-before-define": [2, "nofunc"],
"no-unused-vars": 1,
"no-use-before-define": [2, "nofunc"],
"object-curly-spacing": [2, "never"],
"quotes": [2, "single", "avoid-escape"],
"semi": [2, "always"],
"space-after-keywords": [2, "always"],
"space-in-brackets": [2, "never"],
"space-unary-ops": 2
}
}

0 comments on commit f6f65cb

Please sign in to comment.