-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
50 lines (49 loc) · 1.03 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
import globals from 'globals';
import pluginJs from '@eslint/js';
import stylistic from '@stylistic/eslint-plugin';
export default [
pluginJs.configs.recommended,
{
languageOptions: {
sourceType: 'module',
globals: globals.browser,
},
rules: {
'no-empty': 'off',
'no-redeclare': 'off',
'no-unused-vars': 'off',
},
},
{
languageOptions: {
globals: {
BdApi: 'readonly',
ZeresPluginLibrary: 'readonly',
require: 'readonly',
module: 'readonly',
},
},
},
stylistic.configs['recommended-flat'],
{
plugins: {
'@stylistic': stylistic,
},
rules: {
'@stylistic/semi': ['error', 'always'],
'@stylistic/operator-linebreak': ['error', 'before', {
overrides: {
'=': 'after',
},
}],
'@stylistic/space-unary-ops': [2, {
words: false,
nonwords: false,
overrides: {
new: true,
},
}],
'@stylistic/indent-binary-ops': 'off',
},
},
];