|
@@ -1,16 +1,16 @@
|
|
|
-{
|
|
|
+module.exports = {
|
|
|
"env": {
|
|
|
"browser": true,
|
|
|
- "es6": true
|
|
|
+ "es6": true,
|
|
|
},
|
|
|
"parserOptions": {
|
|
|
- "ecmaVersion": 8
|
|
|
+ "ecmaVersion": 8,
|
|
|
},
|
|
|
"plugins": [
|
|
|
"eslint-plugin-html",
|
|
|
"eslint-plugin-optional-comma-spacing",
|
|
|
"eslint-plugin-one-variable-per-var",
|
|
|
- "eslint-plugin-require-trailing-comma"
|
|
|
+ "eslint-plugin-require-trailing-comma",
|
|
|
],
|
|
|
"extends": "eslint:recommended",
|
|
|
"rules": {
|
|
@@ -85,6 +85,7 @@
|
|
|
"semi": [2, "always"],
|
|
|
"strict": [2, "global"],
|
|
|
"space-before-function-paren": [2, "never"],
|
|
|
- "keyword-spacing": [1, {"before": true, "after": true, "overrides": {}} ]
|
|
|
- }
|
|
|
-}
|
|
|
+ "keyword-spacing": [1, {"before": true, "after": true, "overrides": {}} ],
|
|
|
+ },
|
|
|
+};
|
|
|
+
|