Skip to content

Commit

Permalink
adjusting eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
reyiyo committed Nov 13, 2016
1 parent 9f826e4 commit 5ffce2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"brace-style": [2,"1tbs",{}],
"camelcase": [2,{"properties":"never"}],
"comma-spacing": [2,{"after": true}],
"comma-style": ["error", "last"],
"comma-style": [2, "last"],
"computed-property-spacing": [2,"never"],
"consistent-this": [2,"self"],
"eol-last": 2,
Expand All @@ -27,7 +27,7 @@
"no-underscore-dangle": 1,
"no-unneeded-ternary": 1,
"object-curly-spacing": [2,"never",{}],
"one-var": ["error","never"],
"one-var": [2,"never"],
"operator-linebreak": [1,"after"],
"quotes": [2,"single"],
"semi-spacing": [2,{"after":true}],
Expand Down Expand Up @@ -104,7 +104,7 @@
"no-labels": 2,
"no-lone-blocks": 2,
"no-loop-func": 1,
"no-multi-spaces": ["error",{"exceptions": {"Property":true,"AssignmentExpression":true,"BinaryExpression":false,"VariableDeclarator":true,"ImportDeclaration":true}}],
"no-multi-spaces": [2,{"exceptions": {"Property":true,"AssignmentExpression":true,"BinaryExpression":false,"VariableDeclarator":true,"ImportDeclaration":true}}],
"no-native-reassign": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
Expand Down

0 comments on commit 5ffce2c

Please sign in to comment.