Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
Tweak eslint rules to stop conflicting with prettier output
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Sep 17, 2018
1 parent 01d2095 commit 8dbe1d2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"rules": {
"indent": [ 2, "tab", { "SwitchCase": 1 } ],
"quotes": [ 2, "single" ],
"quotes": [ 2, "single" , { "avoidEscape": true }],
"linebreak-style": [ 2, "unix" ],
"semi": [ 2, "always" ],
"keyword-spacing": [ 2, { "before": true, "after": true } ],
"space-before-blocks": [ 2, "always" ],
"space-before-function-paren": [ 2, "always" ],
"no-mixed-spaces-and-tabs": [ 2, "smart-tabs" ],
"no-cond-assign": [ 0 ]
"no-cond-assign": [ 0 ],
},
"env": {
"es6": true,
Expand Down

0 comments on commit 8dbe1d2

Please sign in to comment.