-
Notifications
You must be signed in to change notification settings - Fork 13
/
.eslintrc.cjs
129 lines (128 loc) · 3.83 KB
/
.eslintrc.cjs
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
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"prettier",
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"import",
"react",
"react-hooks",
"jsx-a11y",
"sort-keys-fix"
],
"settings": {
"react": {
"version": "16.9"
}
},
"rules": {
"no-fallthrough": "off",
"react/display-name": "warn",
"react/prop-types": "off",
"import/no-default-export": "error",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
// @see https://github.com/import-js/eslint-plugin-import/issues/458
"packageDir": [__dirname]
}
],
"func-style": ["error", "declaration"],
"import/order": [
"error",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"groups": [["builtin", "external"], "internal", "parent", "sibling", "index"],
"newlines-between": "always",
"pathGroups": [
{ "pattern": "#*", "group": "external", "position": "after" },
{ "pattern": "#*/*", "group": "external", "position": "after" },
],
}
],
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-unused-vars": ["warn", {
"argsIgnorePattern": "_.*",
"varsIgnorePattern": "_.*"
}],
"@typescript-eslint/no-inferrable-types": "warn"
},
"overrides": [
{
"files": ["gulpfile.*"],
"env": {
"node": true,
}
},
{
"files": ["**/*.tsx"],
"rules": {
"func-style": "off"
}
},
{
"files": ["**/*.d.ts", "**/*.stories.tsx"],
"rules": {
"import/no-default-export": "off"
}
},
{
"files": ["**/*.test.*"],
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"react/display-name": "off",
"react/jsx-key": "off"
},
"globals": {
"expect": "readonly",
},
},
overrideNoExtraneousDependenciesRule('slate-types'),
overrideNoExtraneousDependenciesRule('slate-commons'),
overrideNoExtraneousDependenciesRule('slate-lists'),
overrideNoExtraneousDependenciesRule('slate-tables'),
overrideNoExtraneousDependenciesRule('slate-editor'),
]
}
/**
* @param {string} packageName
*/
function overrideNoExtraneousDependenciesRule(packageName) {
return {
"files": [`packages/${packageName}/**/*`],
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
// @see https://github.com/import-js/eslint-plugin-import/issues/458
"packageDir": [__dirname, `${__dirname}/packages/${packageName}`]
}
],
}
};
}