Simon Egersand
2018-02-11 a392b22565203e69feb2c36bd556d039bd5640a2
.eslintrc.js
@@ -30,9 +30,13 @@
        "semi": 2,
        // Enforce consistent spacing before and after semicolons
        "semi-spacing": 2,
        // Enforce consistent spacing before blocks
        "space-before-blocks": 2,
        // Enforce consistent spacing inside parentheses
        // "space-in-parens": [2, "always"],
        // Enforce the consistent use of either backticks, double, or single quotes
        "quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }]
        "quotes": [2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
        // Enforce using tabs for indentation
        "indent": [2, "tab", { "SwitchCase": 1 }]
    }
};