- 
                Notifications
    You must be signed in to change notification settings 
- Fork 1.7k
/
Copy patheslint.config.mjs
64 lines (55 loc) · 1.44 KB
/
eslint.config.mjs
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
import globals from 'globals';
export default [{
    languageOptions: {
        globals: {
            ...globals.browser,
            ...globals.mocha,
            ...globals.node,
            dashjs: true,
            ManagedMediaSource: true,
            WebKitMediaSource: true,
            MediaSource: true,
            WebKitMediaKeys: true,
            MSMediaKeys: true,
            MediaKeys: true,
            google: true,
        },
        ecmaVersion: 2020,
        sourceType: 'module',
        parserOptions: {
            parser: '@babel/eslint-parser',
            requireConfigFile: false,
        },
    },
    rules: {
        'no-caller': 2,
        'no-undef': 2,
        'no-unused-vars': [
            'error',
            {
                vars: 'all',
                args: 'after-used',
                ignoreRestSiblings: true,
                caughtErrors: 'none' // Allow unused variables in catch blocks
            }
        ],
        'no-use-before-define': 0,
        strict: 0,
        'no-loop-func': 0,
        'no-multi-spaces': 'error',
        'keyword-spacing': ['error', {
            before: true,
            after: true,
        }],
        quotes: ['error', 'single', {
            allowTemplateLiterals: true,
        }],
        indent: ['error', 4, {
            SwitchCase: 1,
        }],
        curly: ['error', 'all'],
        'space-infix-ops': ['error', {
            int32Hint: true,
        }],
    },
}];