aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 1dace30fa917f2deca569b70da49bfb85f2dbfeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
    "env": {
        "browser": true
    },
    "extends": "eslint:all",
    "globals": {
        "define": false
    },
    "rules": {
        "array-bracket-newline": ["error", "consistent"],
        "array-element-newline": "off",
        "brace-style": ["error", "1tbs", { "allowSingleLine": true }],
        "camelcase": "off",
        "capitalized-comments": "off",
        "comma-dangle": ["error", "only-multiline"],
        "curly": ["error", "multi-line"],
        "dot-location": ["error", "property"],
        "func-names": "off",
        // "func-style": ["error", "declaration"],
        "function-call-argument-newline": "off",
        "id-length": ["error", { "min": 1 }],
        "indent": ["error", 4, { "SwitchCase": 1 }],
        // "max-len": ["error", { "code": 120 }],
        "key-spacing": ["error", {
            "singleLine": { "afterColon": false }
        }],
        "line-comment-position": "off",
        "max-params": ["warn", 6],
        "max-statements": ["warn", 44],
        "max-statements-per-line": ["error", { "max": 2 }],
        "multiline-comment-style": "off",
        "multiline-ternary": ["error", "always-multiline"],
        "newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }],
        "no-continue": "off",
        "no-extra-parens": ["error", "functions"],
        "no-implicit-globals": "off",
        "no-inline-comments": "off",
        "no-magic-numbers": "off",
        "no-negated-condition": "off",
        "no-plusplus": "off",
        "no-ternary": "off",
        "no-var": "off",
        "object-curly-newline": ["error", { "consistent": true }],
        "object-property-newline": ["error", { "allowAllPropertiesOnSameLine": true }],
        "object-shorthand": "off",
        "one-var": "off",
        "padded-blocks": "off",
        "prefer-arrow-callback": "off",
        "prefer-destructuring": "off",
        "prefer-spread": "off",
        "prefer-template": "off",
        "quote-props" : ["error", "consistent-as-needed"],
        "quotes": ["error", "double", { "avoidEscape": true }],
        "require-jsdoc": "off",
        "require-unicode-regexp": "off",
        "space-before-function-paren": ["error", {
            "anonymous": "always",
            "named": "never"
        }],
        "vars-on-top": "off",


        // Temporarily disabled rules
        "func-style": "off",
        "function-paren-newline": "off",
        "max-len": "off",
        "max-lines": "off",
        "max-lines-per-function": "off",
        "no-invalid-this": "off",
        "sort-keys": "off",
        "sort-vars": "off"
    }
}