-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
134 lines (133 loc) · 4.65 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import globals from 'globals';
import pluginJs from '@eslint/js';
import stylistic from '@stylistic/eslint-plugin';
import markdown from '@eslint/markdown';
export default [
{ files: ['**/*.js'], languageOptions: { sourceType: 'script' } },
{ files: ['**/*.md'], plugins: { markdown }, language: 'markdown/gfm' },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
stylistic.configs.customize({
braceStyle: '1tbs',
quoteProps: 'as-needed',
semi: true,
}),
// @ts-ignore
...markdown.configs.recommended,
{
rules: {
'accessor-pairs': 'error',
'array-callback-return': 'error',
'arrow-body-style': 'error',
'block-scoped-var': 'error',
camelcase: 'warn',
'capitalized-comments': 'error',
'class-methods-use-this': 'error',
'consistent-return': 'error',
'consistent-this': 'error',
curly: ['error', 'multi-line'],
'default-case-last': 'error',
'default-param-last': 'error',
'dot-notation': 'error',
eqeqeq: 'error',
'func-name-matching': 'error',
'func-names': 'error',
'func-style': 'error',
'grouped-accessor-pairs': 'error',
'guard-for-in': 'error',
'id-denylist': 'error',
'id-length': 'warn',
'id-match': 'error',
'logical-assignment-operators': 'error',
'new-cap': 'error',
'no-alert': 'error',
'no-array-constructor': 'error',
'no-async-promise-executor': 'warn',
'no-bitwise': 'warn',
'no-caller': 'error',
'no-constructor-return': 'error',
'no-div-regex': 'error',
'no-duplicate-imports': 'error',
'no-empty-function': 'error',
'no-eq-null': 'error',
'no-eval': 'error',
'no-extend-native': 'error',
'no-extra-bind': 'error',
'no-extra-label': 'error',
'no-implicit-globals': 'error',
'no-implied-eval': 'error',
'no-inner-declarations': 'error',
'no-invalid-this': 'error',
'no-irregular-whitespace': ['error', { skipStrings: true, skipTemplates: true }],
'no-label-var': 'error',
'no-labels': 'error',
'no-lone-blocks': 'error',
'no-loop-func': 'error',
'no-multi-assign': 'error',
'no-multi-str': 'error',
'no-negated-condition': 'warn',
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-object-constructor': 'error',
'no-octal-escape': 'error',
'no-param-reassign': 'error',
'no-promise-executor-return': 'error',
'no-proto': 'error',
'no-restricted-exports': 'error',
'no-restricted-globals': 'error',
'no-restricted-imports': 'error',
'no-restricted-properties': 'error',
'no-restricted-syntax': 'error',
'no-return-assign': ['error', 'always'],
'no-script-url': 'error',
'no-self-compare': 'error',
'no-sequences': 'error',
'no-shadow': 'error',
'no-template-curly-in-string': 'error',
'no-throw-literal': 'error',
'no-undef-init': 'error',
'no-underscore-dangle': 'error',
'no-unmodified-loop-condition': 'error',
'no-unneeded-ternary': 'error',
'no-unreachable-loop': 'error',
'no-unused-expressions': 'error',
'no-use-before-define': ['error', { variables: false }],
'no-useless-assignment': 'error',
'no-useless-call': 'error',
'no-useless-computed-key': 'error',
'no-useless-concat': 'error',
'no-useless-constructor': 'error',
'no-useless-rename': 'error',
'no-useless-return': 'error',
'no-var': 'error',
'no-void': 'error',
'no-warning-comments': 'error',
'object-shorthand': 'error',
'operator-assignment': 'error',
'prefer-arrow-callback': 'error',
'prefer-const': 'error',
'prefer-destructuring': 'warn',
'prefer-exponentiation-operator': 'error',
'prefer-numeric-literals': 'error',
'prefer-object-has-own': 'error',
'prefer-object-spread': 'error',
'prefer-promise-reject-errors': 'error',
'prefer-regex-literals': 'error',
'prefer-rest-params': 'error',
'prefer-spread': 'error',
'prefer-template': 'warn',
radix: 'error',
'require-atomic-updates': 'warn',
'require-await': 'error',
'symbol-description': 'error',
'unicode-bom': 'error',
'vars-on-top': 'error',
yoda: 'error',
'@stylistic/arrow-parens': ['error', 'as-needed'],
'@stylistic/indent': ['error', 2, { SwitchCase: 1, VariableDeclarator: 'first' }],
'@stylistic/max-statements-per-line': ['error', { max: 2 }],
'@stylistic/multiline-ternary': 'warn',
'@stylistic/quotes': ['error', 'single', { avoidEscape: true }],
},
},
];