diff options
author | Unknown | 2018-06-06 14:06:27 +0100 |
---|---|---|
committer | Unknown | 2018-06-06 14:06:27 +0100 |
commit | d085bfe0cbd2e7862daf7efff6b956809c16ec8d (patch) | |
tree | fcbb0314a98e29044c43bda015321f4b77b4ca3f | |
parent | 12488c32116f8642395b0bbfb3f51c411ae6a2ef (diff) |
bootify
-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 +}; |