-
-
Notifications
You must be signed in to change notification settings - Fork 571
/
eslint.config.mjs
289 lines (285 loc) · 12.7 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
import js from "@eslint/js";
import stylistic from "@stylistic/eslint-plugin";
import globals from "globals";
/** @type {import("@types/eslint").Linter.FlatConfig[]} */
export default [
{
// "if an ignores key is used without any other keys in the configuration object, then the patterns act as global ignores"
"ignores": [
"**/node_modules/",
"**/.git/",
"**/.history/",
"**/.idea/",
"**/.vscode/",
"**/lib/", // vendored dependencies
"**/out/", // Electron build
"**/build/", // maybe nothing
"**/dist/", // maybe nothing
"**/localization/*/*.js", // generated files (note that there is some non-generated JS directly in `localization/`, hence not using `**/localization/**/*.js`)
],
},
js.configs.recommended,
{
"linterOptions": {
"reportUnusedDisableDirectives": "warn",
},
"languageOptions": {
"ecmaVersion": 2022,
"sourceType": "module",
"globals": {
...globals.browser,
...globals.es2022,
// libraries
"$": "readonly",
"jQuery": "readonly",
"libtess": "readonly",
"firebase": "readonly",
"GIF": "readonly",
"saveAs": "readonly",
"YT": "readonly",
"FontDetective": "readonly",
"AnyPalette": "readonly",
"ImageTracer": "readonly",
// os-gui's MenuBar.js
// "MenuBar": "readonly",
// "MENU_DIVIDER": "readonly",
// os-gui's $Window.js
// "$Window": "readonly",
// "$FormWindow": "readonly",
// os-gui's parse-theme.js has more
},
},
"plugins": {
"@stylistic": stylistic,
},
"rules": {
"no-undef": "warn",
"no-unused-vars": ["warn", {
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_",
// "varsIgnorePattern": "^_",
}],
// "eqeqeq": "error",
// "class-methods-use-this": "error",
"no-alert": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-invalid-this": "error",
"no-new-func": "error",
"no-eval": "error",
"no-new-wrappers": "error",
"no-proto": "error",
"no-return-assign": "error",
"no-script-url": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unmodified-loop-condition": "error",
"no-unused-expressions": "error", // a && a() used a lot, could switch to a?.() etc. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Optional_chaining
"no-useless-concat": "error",
"prefer-promise-reject-errors": "error",
"radix": "error",
"require-await": "error",
// "vars-on-top": "error",
"no-label-var": "error",
// "no-shadow": "error",
// "no-use-before-define": "error",
// To target specific variables to rename or otherwise address:
"no-restricted-globals": ["error", "event", "canvas", "ctx", "colors", "i", "j", "k", "x", "y", "z", "width", "height", "w", "h"],
// Stylistic:
"@stylistic/array-bracket-newline": ["error", "consistent"],
"@stylistic/array-bracket-spacing": ["error", "never"],
// "@stylistic/array-element-newline": ["error", "consistent"], // lot of big arrays with sometimes meaningful line breaks; could exclude certain files though
"@stylistic/arrow-parens": ["error", "always"],
"@stylistic/arrow-spacing": ["error", { "before": true, "after": true }],
"@stylistic/block-spacing": ["error", "always"],
"@stylistic/brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"@stylistic/comma-dangle": ["error", {
"arrays": "always-multiline", // ensure commas to avoid confusing git diffs
"objects": "always-multiline", // ensure commas to avoid confusing git diffs
"imports": "never", // always a single line anyways
"exports": "never", // matches VS Code's default JS/TS formatter
"functions": "only-multiline", // commas sometimes avoid confusing git diffs, sometimes are confusing themselves
}],
"@stylistic/comma-spacing": ["error", { "before": false, "after": true }],
"@stylistic/comma-style": ["error", "last"],
"@stylistic/computed-property-spacing": ["error", "never"],
"@stylistic/dot-location": ["error", "property"],
"@stylistic/eol-last": ["error", "always"],
// "@stylistic/function-call-argument-newline": ["error", "consistent"], // several places with meaningful line breaks grouping arguments
"@stylistic/function-call-spacing": ["error", "never"],
// "@stylistic/function-paren-newline": ["error", "multiline-arguments"], // several places with meaningful line breaks grouping arguments
"@stylistic/generator-star-spacing": ["error", "after"],
// "@stylistic/implicit-arrow-linebreak": ["error", "beside"], // could encourage parens for clarity, but ESLint won't mention that's the reason, so probably not a good idea
// The indent settings are mostly defaults copied from https://github.com/eslint-stylistic/eslint-stylistic/blob/c11f1d6f26c13b29fd44c95c908922cb79a0ac82/packages/eslint-plugin/configs/customize.ts#L115-L154
"@stylistic/indent": ["error", "tab", {
ArrayExpression: 1,
CallExpression: { arguments: 1 },
flatTernaryExpressions: false,
FunctionDeclaration: { body: 1, parameters: 1 },
FunctionExpression: { body: 1, parameters: 1 },
ignoreComments: true, // modified from default
ignoredNodes: [
"TemplateLiteral *",
"JSXElement",
"JSXElement > *",
"JSXAttribute",
"JSXIdentifier",
"JSXNamespacedName",
"JSXMemberExpression",
"JSXSpreadAttribute",
"JSXExpressionContainer",
"JSXOpeningElement",
"JSXClosingElement",
"JSXFragment",
"JSXOpeningFragment",
"JSXClosingFragment",
"JSXText",
"JSXEmptyExpression",
"JSXSpreadChild",
"TSUnionType",
"TSIntersectionType",
"TSTypeParameterInstantiation",
"FunctionExpression > .params[decorators.length > 0]",
"FunctionExpression > .params > :matches(Decorator, :not(:first-child))",
"ClassBody.body > PropertyDefinition[decorators.length > 0] > .key",
],
ImportDeclaration: 1,
MemberExpression: 1,
ObjectExpression: 1,
offsetTernaryExpressions: false,
outerIIFEBody: 1,
SwitchCase: 1,
VariableDeclarator: 1,
}],
"@stylistic/indent-binary-ops": ["error", "tab"],
// "@stylistic/jsx-child-element-spacing": "off",
// "@stylistic/jsx-closing-bracket-location": "off",
// "@stylistic/jsx-closing-tag-location": "off",
// "@stylistic/jsx-curly-brace-presence": "off",
// "@stylistic/jsx-curly-newline": "off",
// "@stylistic/jsx-curly-spacing": "off",
// "@stylistic/jsx-equals-spacing": "off",
// "@stylistic/jsx-first-prop-new-line": "off",
// "@stylistic/jsx-function-call-newline": "off",
// "@stylistic/jsx-indent": "off",
// "@stylistic/jsx-indent-props": "off",
// "@stylistic/jsx-max-props-per-line": "off",
// "@stylistic/jsx-newline": "off",
// "@stylistic/jsx-one-expression-per-line": "off",
// "@stylistic/jsx-pascal-case": "off",
// "@stylistic/jsx-props-no-multi-spaces": "off",
// "@stylistic/jsx-quotes": "off",
// "@stylistic/jsx-self-closing-comp": "off",
// "@stylistic/jsx-sort-props": "off",
// "@stylistic/jsx-tag-spacing": "off",
// "@stylistic/jsx-wrap-multilines": "off",
"@stylistic/key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
"@stylistic/keyword-spacing": ["error", { "before": true, "after": true }],
// "@stylistic/line-comment-position": "off",
// "@stylistic/linebreak-style": "off",
// "@stylistic/lines-around-comment": ["error", ""], // TODO maybe (so many options...)
"@stylistic/lines-between-class-members": ["error", "never"],
// "@stylistic/max-len": ["error", ""], // TODO maybe along with changing export {} to individual exports
"@stylistic/max-statements-per-line": ["error", { "max": 4 }], // TODO: maybe decrease this
// TODO: lint .d.ts files, and ideally JSDoc comments
// "@stylistic/member-delimiter-style": ["error", { "multiline": { "delimiter": "semi", "requireLast": true }, "singleline": { "delimiter": "semi", "requireLast": true } }],
// "@stylistic/multiline-comment-style": ["error", "separate-lines"], // I use block comments sometimes for disabled code; also this is detecting a few JSDoc comments even though it says it won't without "checkJSDoc" set to true.
// "@stylistic/multiline-ternary": ["error", "always-multiline"], // might want to change the ternary style in the future...
"@stylistic/new-parens": ["error", "always"],
"@stylistic/newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }], // TODO: maybe decrease this
// "@stylistic/no-confusing-arrow": ["error", { "allowParens": true }], // don't really like the changes this implies in the couple of places it flags
// "@stylistic/no-extra-parens": ["error", "all"], // if there are extra parens, it's probably for clarity (TODO: look at the granular options), also, this doesn't seem to detect cases it should for function calls?
"@stylistic/no-extra-semi": "error",
"@stylistic/no-floating-decimal": "error",
// "@stylistic/no-mixed-operators": ["error", ...], // TODO: investigate options
"@stylistic/no-mixed-spaces-and-tabs": "error",
"@stylistic/no-multi-spaces": "error",
"@stylistic/no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 1 }],
// "@stylistic/no-tabs": "off", // I use tabs for indentation, in disabled code, and in template literals
"@stylistic/no-trailing-spaces": "error",
"@stylistic/no-whitespace-before-property": "error",
"@stylistic/nonblock-statement-body-position": ["error", "beside"], // TODO: maybe drop curly braces from single line conditionals
// "@stylistic/object-curly-newline": ["error", ""], // TODO: investigate options
"@stylistic/object-curly-spacing": ["error", "always"],
"@stylistic/object-property-newline": ["error", { "allowAllPropertiesOnSameLine": true }],
// "@stylistic/one-var-declaration-per-line": ["error", "always"], // TODO maybe? (too bad there's no "usually" option, haha)
"@stylistic/operator-linebreak": ["error", "after"], // not sure about ternary operator tbh
// "@stylistic/padded-blocks": "off", // it depends, especially on how much stuff is in the block
// "@stylistic/padding-line-between-statements": ["error", ""], // TODO: investigate options, looks very complex
// "@stylistic/quote-props": ["error", "consistent"], // I prefer it inconsistent if it's just for a few CSS custom properties when setting several CSS properties at once, especially since it's not going to be consistent with object property shorthand e.g. { "--requires-quotes": requiresQuotes, "quotedForConsistency": true, inconsistent }
"@stylistic/quotes": ["error", "double", { "avoidEscape": true, "allowTemplateLiterals": true }], // Note: allowTemplateLiterals allows template literals without any substitutions, and removing "allowTemplateLiterals" doesn't allow them for avoiding escaping
"@stylistic/rest-spread-spacing": ["error", "never"],
"@stylistic/semi": ["error", "always"],
"@stylistic/semi-spacing": ["error", { "before": false, "after": true }],
"@stylistic/semi-style": ["error", "last"],
"@stylistic/space-before-blocks": ["error", "always"],
"@stylistic/space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always",
}],
"@stylistic/space-in-parens": ["error", "never"],
"@stylistic/space-infix-ops": "error",
"@stylistic/space-unary-ops": ["error", {
"words": true,
"nonwords": false,
}],
// "@stylistic/spaced-comment": ["error", "always"], // TODO: investigate
"@stylistic/switch-colon-spacing": ["error", { "after": true, "before": false }],
"@stylistic/template-curly-spacing": ["error", "never"],
"@stylistic/template-tag-spacing": ["error", "never"],
// "@stylistic/type-annotation-spacing": ["error", ""], // TODO: lint TS
// "@stylistic/type-generic-spacing": ["error", ""], // TODO: lint TS
// "@stylistic/type-named-tuple-spacing": ["error", ""], // TODO: lint TS
"@stylistic/wrap-iife": ["error", "inside"],
// "@stylistic/wrap-regex": "error", // does that really clarify things? eh
"@stylistic/yield-star-spacing": ["error", "after"],
},
},
{
"files": [
"help/vaporwave.js",
"src/app-localization.js",
"src/app-state.js",
"src/copy-inkscape-labels.js",
"src/error-handling-basic.js",
"svg-paint/svg-paint.js",
"localization/**/*.js",
],
"languageOptions": {
"sourceType": "script",
},
},
{
"files": [
"forge.config.js",
"src/electron-injected.js",
"src/electron-main.js",
"sync-package.js",
"prune-globals.js",
"cypress/plugins/index.js",
"localization/*.js",
],
"languageOptions": {
"sourceType": "commonjs",
"globals": {
...globals.node,
},
},
},
{
"files": [
"cypress/**/*.js",
],
"languageOptions": {
"globals": {
...globals.mocha,
"expect": "readonly",
"cy": "readonly",
"Cypress": "readonly",
},
},
},
];