summaryrefslogtreecommitdiffstats
path: root/platform/npm/.eslintrc.json
blob: 5f7c6b58c5ccfeeb22e632efeb4af8fa678dec13 (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
{
    "root": true,
    "env": {
        "es2021": true,
        "node": true
    },
    "extends": "eslint:recommended",
    "parserOptions": {
        "ecmaVersion": 12,
        "sourceType": "module"
    },
    "rules": {
        "eqeqeq": [ "warn", "always" ],
        "indent": [
          "warn",
          4,
          {
            "ArrayExpression": "first",
            "CallExpression": { "arguments": "first" },
            "MemberExpression": "off",
            "ObjectExpression": "off",
            "ignoreComments": true,
            "ignoredNodes": [
              "AssignmentExpression:has(Literal)"
            ]
          }
        ],
        "getter-return": "off",
        "no-control-regex": "off",
        "no-empty": [ "error", { "allowEmptyCatch": true } ],
        "no-promise-executor-return": [ "error" ],
        "no-template-curly-in-string": [ "error" ],
        "no-unreachable-loop": [ "error" ],
        "no-useless-backreference": [ "error" ],
        "no-useless-escape": "off",
        "require-atomic-updates": [ "warn" ]
    }
}