aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: a350bce4723549d0b259efa2911b6b6c037573e7 (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
74
75
76
77
78
79
80
81
82
83
{
    "root": true,
    "extends": "eslint:recommended",
    "parserOptions": {
        "ecmaVersion": 8,
        "sourceType": "script"
    },
    "env": {
        "browser": true,
        "es2017": true,
        "webextensions": true
    },
    "plugins": ["no-unsanitized"],
    "ignorePatterns": [
        "/ext/mixed/lib/",
        "/ext/bg/js/templates.js"
    ],
    "rules": {
        "arrow-parens": ["error", "always"],
        "comma-dangle": ["error", "never"],
        "curly": ["error", "all"],
        "dot-notation": "error",
        "eqeqeq": "error",
        "no-case-declarations": "error",
        "no-const-assign": "error",
        "no-constant-condition": "off",
        "no-global-assign": "error",
        "no-undef": "error",
        "no-unused-vars": ["error", {"vars": "local", "args": "after-used", "argsIgnorePattern": "^_", "caughtErrors": "none"}],
        "no-unused-expressions": "error",
        "no-var": "error",
        "prefer-const": ["error", {"destructuring": "all"}],
        "quote-props": ["error", "consistent"],
        "quotes": ["error", "single", "avoid-escape"],
        "require-atomic-updates": "off",
        "semi": "error",
        "no-unsanitized/method": "error",
        "no-unsanitized/property": "error"
    },
    "overrides": [
        {
            "files": ["*.js"],
            "excludedFiles": ["ext/mixed/js/core.js"],
            "globals": {
                "yomichan": "readonly",
                "errorToJson": "readonly",
                "jsonToError": "readonly",
                "logError": "readonly",
                "isObject": "readonly",
                "hasOwn": "readonly",
                "toIterable": "readonly",
                "stringReverse": "readonly",
                "promiseTimeout": "readonly",
                "stringReplaceAsync": "readonly",
                "parseUrl": "readonly",
                "EventDispatcher": "readonly",
                "EventListenerCollection": "readonly",
                "EXTENSION_IS_BROWSER_EDGE": "readonly"
            }
        },
        {
            "files": ["ext/mixed/js/core.js"],
            "globals": {
                "chrome": "writable"
            }
        },
        {
            "files": ["ext/bg/js/settings/*.js"],
            "env": {
                "jquery": true
            }
        },
        {
            "files": ["test/**/*.js"],
            "env": {
                "browser": false,
                "es2017": false,
                "webextensions": false,
                "node": true
            }
        }
    ]
}