Anna Kurylo
2018-10-16 99929e8c706aa7f6196ac4e02df1c04449feee7a
.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 }]
    }
};