forked from refined-github/refined-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
191 lines (184 loc) · 5.5 KB
/
eslint.config.js
File metadata and controls
191 lines (184 loc) · 5.5 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import antfu from '@antfu/eslint-config';
export default antfu(
{
react: true,
stylistic: {
indent: 'tab',
},
unicorn: {
allRecommended: true,
},
globals: [
'browser',
],
typescript: {
overrides: {
'ts/method-signature-style': 'off', // Disagree and it breaks types https://github.com/typescript-eslint/typescript-eslint/issues/1991
'ts/consistent-type-definitions': 'off', // Review later
'ts/explicit-function-return-type': [
'error',
{
allowExpressions: true,
},
],
},
},
rules: {
'react-refresh/only-export-components': 'off', // N/A
'react/no-missing-key': 'off', // N/A
'no-irregular-whitespace': 'off', // We do want to use non-breaking spaces
'jsdoc/check-alignment': 'off', // Not enough to be useful
// Antfu style disagreements
'regexp/no-useless-character-class': 'off', // [/] is more readable than \/
'style/object-curly-spacing': ['error', 'never'], // Unnecessary change for now
'style/block-spacing': ['error', 'never'], // Same
'jsonc/array-bracket-spacing': 'off', // Same
'style/brace-style': ['error', '1tbs'], // Naw, man
'style/semi': ['error', 'always'],
'style/member-delimiter-style': ['error', {
multiline: {
delimiter: 'semi',
},
}],
'style/arrow-parens': ['error', 'as-needed'],
'prefer-template': 'off', // When there's a single `+` templates are less readable
'style/jsx-one-expression-per-line': 'off', // Terrible for inline elements, e.g. text
// Disable some unicorn rules
'unicorn/expiring-todo-comments': 'off', // We just got too many, too much noise
'unicorn/no-nested-ternary': 'off',
'unicorn/better-regex': 'off',
'unicorn/prefer-top-level-await': 'off',
'unicorn/prefer-dom-node-dataset': 'off',
'unicorn/prefer-ternary': 'off', // Unreadable https://github.com/sindresorhus/eslint-plugin-unicorn/issues/1633
'unicorn/prevent-abbreviations': [
'error',
{
replacements: {
props: false,
ref: false,
nav: false,
},
},
],
// Restore errors
'no-await-in-loop': 'error',
'new-cap': [
'error',
{
newIsCap: true,
capIsNew: true,
},
],
'test/consistent-test-it': 'off',
'sort-imports': 'off',
'antfu/top-level-function': 'off', // Maybe later
'unused-imports/no-unused-vars': 'off', // Buggy
'no-console': 'off',
'jsonc/sort-keys': 'off',
'ts/no-restricted-types': [
'error',
{
types: {
'object': {
message: 'The `object` type is hard to use. Use `Record<string, unknown>` instead. See: https://github.com/typescript-eslint/typescript-eslint/pull/848',
fixWith: 'Record<string, unknown>',
},
'null': {
message: 'Use `undefined` instead. See: https://github.com/sindresorhus/meta/issues/7',
fixWith: 'undefined',
},
'Buffer': {
message: 'Use Uint8Array instead. See: https://sindresorhus.com/blog/goodbye-nodejs-buffer',
suggest: [
'Uint8Array',
],
},
'[]': 'Don\'t use the empty array type `[]`. It only allows empty arrays. Use `SomeType[]` instead.',
'[[]]': 'Don\'t use `[[]]`. It only allows an array with a single element which is an empty array. Use `SomeType[][]` instead.',
'[[[]]]': 'Don\'t use `[[[]]]`. Use `SomeType[][][]` instead.',
'[[[[]]]]': 'ur drunk 🤡',
'[[[[[]]]]]': '🦄💥',
},
},
],
'no-restricted-syntax': [
'error',
{
selector:
':matches([callee.name=delegate], [callee.name=$], [callee.name=$$], [callee.name=observe], [callee.property.name=querySelector], [callee.property.name=querySelectorAll], [callee.property.name=closest])[arguments.0.value=/,/][arguments.0.value.length>=20]:not([arguments.0.value=/:has|:is/])',
message: 'Instead of a single string, pass an array of selectors and add comments to each selector',
},
{
selector:
':matches([callee.name=delegate], [callee.name=$], [callee.name=$$], [callee.name=observe], [callee.property.name=querySelector], [callee.property.name=querySelectorAll], [callee.property.name=closest])[arguments.0.type=ArrayExpression][arguments.0.elements.length=1]:not([arguments.0.value=/:has|:is/])',
message: 'Instead of a single string, pass an array of selectors and add comments to each selector',
},
],
'no-alert': 'off',
'ts/no-unsafe-assignment': 'off',
'ts/no-unsafe-argument': 'off',
'ts/no-unsafe-member-access': 'off',
'ts/no-unsafe-return': 'off',
'ts/no-unsafe-call': 'off',
'ts/consistent-type-imports': 'off',
'n/prefer-global/process': 'off',
'import/prefer-default-export': 'error',
'import/order': [
'error',
{
'groups': [
[
'builtin',
'external',
],
],
'newlines-between': 'always-and-inside-groups',
},
],
// TODO: Enable after https://github.com/Rel1cx/eslint-react/issues/739
// "react/function-component-definition": [
// "error",
// {
// "namedComponents": "function-declaration"
// }
// ]
},
},
{
files: [
'build/*',
],
rules: {
'ts/triple-slash-reference': 'off',
'unicorn/prefer-module': 'off',
},
},
{
files: [
'source/features/*',
],
rules: {
'import/prefer-default-export': 'off',
},
},
{
files: [
'**/*.md',
],
rules: {
'style/no-multiple-empty-lines': 'off',
},
},
{
files: [
'.github/**',
],
rules: {
'unicorn/filename-case': 'off',
},
},
// https://eslint.org/docs/latest/use/configure/ignore#ignoring-files
{
ignores: ['safari'],
},
);