-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.eslintrc.js
115 lines (115 loc) · 2.86 KB
/
.eslintrc.js
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
module.exports = {
root: true,
env: {
node: true,
es6: true,
},
parserOptions: {
ecmaVersion: 2022,
},
extends: ["prettier"],
plugins: ["prettier", "eslint-plugin-local-rules"],
rules: {
"prettier/prettier": [
"error",
{
printWidth: 99,
parser: "flow",
},
],
"no-shadow": [2, { builtinGlobals: true, hoist: "all" }],
"no-undef": "error",
"no-unused-vars": ["error", { vars: "all", args: "after-used", ignoreRestSiblings: false }],
},
overrides: [
{
files: ["src/**/*.js"],
settings: {
"boundaries/dependency-nodes": ["require", "import", "dynamic-import", "export"],
"boundaries/elements": [
{
type: "config",
mode: "file",
pattern: ["src/configs/*.js", "(package.json)"],
capture: ["name"],
},
{
type: "constants",
mode: "file",
pattern: "src/constants/*.js",
capture: ["name"],
},
{
type: "core",
mode: "file",
pattern: "src/core/*.js",
capture: ["name"],
},
{
type: "helper",
mode: "file",
pattern: "src/helpers/*.js",
capture: ["name"],
},
{
type: "rule",
mode: "file",
pattern: "src/rules/*.js",
capture: ["name"],
},
{
type: "rule-factory",
mode: "file",
pattern: "src/rules-factories/*.js",
capture: ["name"],
},
{
type: "plugin",
mode: "full",
pattern: ["src/index.js"],
},
],
},
rules: {
"local-rules/boundaries/element-types": [
2,
{
default: "disallow",
rules: [
{
from: "plugin",
allow: ["constants", "config", "rule"],
},
{
from: "config",
allow: ["constants", "config"],
},
{
from: "constants",
allow: ["constants"],
},
{
from: "core",
allow: ["constants", "helper", "core"],
},
{
from: "helper",
allow: ["constants", "helper"],
},
{
from: "rule",
allow: ["constants", "helper", "core", "rule-factory"],
},
{
from: "rule-factory",
allow: ["constants", "helper", "core"],
},
],
},
],
"local-rules/boundaries/no-unknown": [2],
"local-rules/boundaries/no-unknown-files": [2],
},
},
],
};