forked from barnabycolby/MMM-Carousel
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy patheslint.config.mjs
79 lines (77 loc) · 2.36 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
import eslintPluginImport from "eslint-plugin-import";
import eslintPluginJs from "@eslint/js";
import eslintPluginStylistic from "@stylistic/eslint-plugin";
import globals from "globals";
const config = [
eslintPluginImport.flatConfigs.recommended,
eslintPluginJs.configs.all,
{
"files": ["**/*.js"],
"languageOptions": {
"ecmaVersion": "latest",
"globals": {
...globals.browser,
...globals.node
},
"sourceType": "commonjs"
},
"plugins": {
...eslintPluginStylistic.configs["all-flat"].plugins
},
"rules": {
...eslintPluginStylistic.configs["all-flat"].rules,
"@stylistic/dot-location": ["error", "property"],
"@stylistic/function-call-argument-newline": ["error", "consistent"],
"@stylistic/indent": ["error", 2],
"@stylistic/lines-around-comment": "off",
"@stylistic/padded-blocks": ["error", "never"],
"@stylistic/quote-props": ["error", "as-needed"],
"camelcase": "off",
"capitalized-comments": "off",
"complexity": ["error", 30],
"consistent-this": "off",
"curly": ["error", "multi-line"],
"func-style": "off",
"id-length": ["error", {"exceptions": ["_", "i", "j", "s"], "min": 2}],
"init-declarations": "off",
"max-depth": ["error", 7],
"max-lines": "off",
"max-lines-per-function": ["error", 200],
"max-statements": ["error", 50],
"no-inline-comments": "off",
"no-magic-numbers": "off",
"no-negated-condition": "off",
"no-undefined": "off",
"one-var": "off",
"prefer-named-capture-group": "off",
"sort-keys": "off",
"strict": "off"
}
},
{
"files": ["**/*.mjs"],
"languageOptions": {
"ecmaVersion": "latest",
"globals": {
...globals.node
},
"sourceType": "module"
},
"plugins": {
...eslintPluginStylistic.configs["all-flat"].plugins
},
"rules": {
...eslintPluginStylistic.configs["all-flat"].rules,
"@stylistic/array-element-newline": "off",
"@stylistic/indent": ["error", 2],
"@stylistic/object-property-newline": "off",
"@stylistic/padded-blocks": ["error", "never"],
"func-style": "off",
"max-lines-per-function": ["error", 100],
"no-magic-numbers": "off",
"one-var": "off",
"prefer-destructuring": "off"
}
}
];
export default config;