Skip to content

Commit

Permalink
Change old warnings to errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Hinrichsen committed Jan 22, 2016
1 parent 8dc9e4e commit 7122e42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@
"indent": [2, 2, {"SwitchCase": 1, "VariableDeclarator": 1}],
"camelcase": [2, {"properties": "always"}],
"strict": [2, "never"], // <-- fix
"block-spacing": [1, "always"],
"block-spacing": [2, "always"],
"no-mixed-spaces-and-tabs": [2],
"no-trailing-spaces": [2, { "skipBlankLines": false }],
"no-underscore-dangle": 1,
"no-underscore-dangle": 2,
"no-multiple-empty-lines": [2, {"max": 1}],
"no-empty": [2],
"one-var": [1, "never"],
"one-var": [2, "never"],
"object-curly-spacing": [2, "never"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, {
"anonymous": "always", "named": "never"
}],
"spaced-comment": [2, "always", { "exceptions": ["*"]}],
"semi": [1, "always"],
"semi": [2, "always"],
"max-len": [2, 80, 4],
"valid-jsdoc": [2, {
"requireReturn": false,
Expand Down

0 comments on commit 7122e42

Please sign in to comment.