Skip to content

Commit

Permalink
fix linter for spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
derikb committed Oct 16, 2017
1 parent d372197 commit a9c6f72
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .eslintrc.json
Expand Up @@ -8,6 +8,11 @@
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4,
{ "SwitchCase": 1 }
],
"linebreak-style": [
"error",
"unix"
Expand All @@ -18,22 +23,14 @@
{ "allowTemplateLiterals": true }
],
"prefer-template": [
"error"
"error"
],
"semi": [
"error",
"always"
],
"no-tabs": [
"off"
],
"indent": [
"error",
"tab",
{ "SwitchCase": 1 }
],
"no-trailing-spaces": ["error", { "skipBlankLines": true }],
"camelcase": [ "off" ],
"prefer-const": [ "error" ]
}
}
}

0 comments on commit a9c6f72

Please sign in to comment.