diff options
-rw-r--r-- | .eslintrc.js | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 585551a..9487f17 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -7,15 +7,19 @@ module.exports = { "rules": { "indent": ["error", 2], "linebreak-style": ["error", "unix"], - "quotes": ["error", "double", {"allowTemplateLiterals": true}], + "quotes": ["error", "double", { + "allowTemplateLiterals": true + }], "semi": ["error", "always"], "no-console": 0 }, "parserOptions": { "ecmaVersion": 2017 }, - globals: { - "$log": function(a){}, - "le": {apps: {}} + "globals": { + "$log": function(a) {}, + "le": { + apps: {} + } } -};
\ No newline at end of file +}; |