Skip to content

Commit

Permalink
Use new eslint syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeezley committed Jun 13, 2017
1 parent 99353fb commit 0889a10
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .eslintrc
@@ -1,19 +1,19 @@
{
"extends": "semistandard",
"rules": {
"indent": [2, 2, {"VariableDeclarator": 2, "SwitchCase": 1}],
"padded-blocks": 0,
"space-before-function-paren": [2, {"anonymous": "always", "named": "never"}],
"one-var": 0,
"no-throw-literal": 0,
"new-cap": 0,
"spaced-comment": 0,
"operator-linebreak": 0,
"key-spacing": 0,
"no-unneeded-ternary": 0,
"yoda": 0,
"no-useless-call": 0,
"camelcase": 0
"indent": ["error", 2, {"VariableDeclarator": 2, "SwitchCase": 1}],
"padded-blocks": "off",
"space-before-function-paren": ["error", {"anonymous": "always", "named": "never"}],
"one-var": "off",
"no-throw-literal": "off",
"new-cap": "off",
"spaced-comment": "off",
"operator-linebreak": "off",
"key-spacing": "off",
"no-unneeded-ternary": "off",
"yoda": "off",
"no-useless-call": "off",
"camelcase": "off"
},
"env": {
"browser": true
Expand Down

0 comments on commit 0889a10

Please sign in to comment.