Improve linting

pull/20/head
Joe Biellik 4 years ago
parent 0b57c52db8
commit 341bf63422

@ -3,17 +3,23 @@
"node": true "node": true
}, },
"parserOptions": { "parserOptions": {
"ecmaVersion": 8 "ecmaVersion": 11
}, },
"extends": ["eslint:recommended"], "extends": ["eslint:recommended"],
"rules": { "rules": {
"comma-dangle": ["error"],
"indent": ["error", "tab"], "indent": ["error", "tab"],
"quotes": ["error", "single", "avoid-escape"],
"linebreak-style": ["error", "unix"], "linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"no-trailing-spaces": ["warn"],
"comma-dangle": ["error"],
"no-console": ["warn", { "allow": ["warn", "error"] }], "no-console": ["warn", { "allow": ["warn", "error"] }],
"space-before-function-paren": ["error", "never"] "no-extra-parens": ["error"],
"no-loss-of-precision": ["error"],
"no-promise-executor-return": ["error"],
"no-template-curly-in-string": ["error"],
"no-trailing-spaces": ["warn"],
"no-unreachable-loop": ["error"],
"no-useless-backreference": ["error"],
"quotes": ["error", "single", "avoid-escape"],
"semi": ["error", "always"],
"space-before-function-paren": ["error", {"anonymous": "never", "named": "never", "asyncArrow": "always"}]
} }
} }

Loading…
Cancel
Save