Browse Source

Merge pull request #5 from trgwii/develop

Make `.eslintrc.json` valid by its own rules.
pull/6/head
Muthu Kumar 7 years ago
committed by GitHub
parent
commit
db333f9ccb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 38
      .eslintrc.json

38
.eslintrc.json

@ -1,21 +1,21 @@
{ {
"env": { "env": {
"node": true "node": true
}, },
"extends": "eslint:recommended", "extends": "eslint:recommended",
"rules": { "rules": {
"no-console": "off", "no-console": "off",
"indent": [ "indent": [
"error", "error",
"tab" "tab"
], ],
"linebreak-style": [ "linebreak-style": [
"error", "error",
"unix" "unix"
], ],
"semi": [ "semi": [
"error", "error",
"always" "always"
] ]
} }
} }
Loading…
Cancel
Save