'a'
mh-two-thousand-and-two
2024-04-12 44d2c92345cd156a59fc327b3060292a282d2893
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
84
85
86
87
88
89
90
91
92
93
94
{
    "root": true,
 
    "extends": "@ljharb",
 
    "env": {
        "es6": true,
    },
 
    "rules": {
        "array-bracket-newline": 0,
        "complexity": 0,
        "eqeqeq": [2, "allow-null"],
        "func-name-matching": 0,
        "id-length": [2, { "min": 1, "max": 40 }],
        "max-params": [2, 5],
        "max-lines-per-function": 1,
        "max-statements": 1,
        "max-statements-per-line": [2, { "max": 2 }],
        "multiline-comment-style": 0,
        "no-magic-numbers": 0,
        "new-cap": 0,
        "no-extra-parens": 1,
        "sort-keys": 0,
    },
 
    "overrides": [
        {
            "files": "GetIntrinsic.js",
            "rules": {
                "max-statements": 0,
            }
        },
        {
            "files": "operations/*",
            "rules": {
                "max-lines": 0,
            },
        },
        {
            "files": [
                "operations/deltas.js",
                "operations/getOps.js",
                "operations/spackle.js",
                "operations/years.js",
            ],
            "extends": "@ljharb/eslint-config/node/latest",
            "rules": {
                "complexity": 0,
                "func-style": 0,
                "max-lines-per-function": 0,
                "max-nested-callbacks": 0,
                "max-statements": 0,
                "no-magic-numbers": 0,
                "no-throw-literal": 0,
            },
        },
        {
            "files": "test/**",
            "extends": "@ljharb/eslint-config/tests",
            "rules": {
                "max-len": 0,
                "max-lines-per-function": 0,
                "no-implicit-coercion": 0,
                "no-invalid-this": 1,
                "prefer-promise-reject-errors": 0,
            },
        },
        {
            "files": [
                "*/Num*ToRawBytes.js",
                "*/RawBytesToNum*.js",
                "helpers/bytesAs*.js",
                "helpers/valueToFloat*.js",
            ],
            "rules": {
                "max-lines-per-function": "off",
                "max-statements": "off",
                "no-redeclare": "warn",
                "operator-linebreak": [2, "before", {
                    "overrides": {
                        "=": "none"
                    }
                }],
            },
        },
        {
            "files": "./*/GetSubstitution.js",
            "rules": {
                "max-depth": "off",
            },
        },
    ],
}