Skip to content

Commit 91c3b60

Browse files
committed
Switch from Eslint + Typescript-eslint + Prettier to Biome + Oxlint
Signed-off-by: Michael Telatynski <[email protected]>
1 parent 7c858d3 commit 91c3b60

File tree

9 files changed

+357
-1682
lines changed

9 files changed

+357
-1682
lines changed

.eslintrc.cjs

-88
This file was deleted.

.prettierignore

-21
This file was deleted.

.prettierrc.cjs

-1
This file was deleted.

biome.jsonc

+204
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"formatter": {
4+
"enabled": true,
5+
"useEditorconfig": true,
6+
"formatWithErrors": false,
7+
"indentStyle": "space",
8+
"indentWidth": 4,
9+
"lineEnding": "lf",
10+
"lineWidth": 120,
11+
"attributePosition": "auto",
12+
"bracketSpacing": true,
13+
"ignore": [
14+
"../element-web",
15+
"./build/",
16+
"./docker/",
17+
"./dist/**",
18+
"./.hak/**",
19+
"./dockerbuild/",
20+
"./lib/",
21+
"./node_modules/",
22+
"./packages.elememt.io/",
23+
"./webapp",
24+
"./src/i18n/strings",
25+
"./CHANGELOG.md",
26+
"./package-lock.json",
27+
"./yarn.lock",
28+
"./playwright/html-report",
29+
"./playwright/test-results",
30+
"**/.idea",
31+
"**/.vscode",
32+
"**/.vscode/",
33+
"**/.tmp",
34+
"**/.env",
35+
"./coverage",
36+
"./.npmrc",
37+
"./*.log"
38+
]
39+
},
40+
"organizeImports": { "enabled": false },
41+
"linter": {
42+
"enabled": false,
43+
"rules": {
44+
"recommended": false,
45+
"complexity": {
46+
"noExtraBooleanCast": "error",
47+
"noMultipleSpacesInRegularExpressionLiterals": "error",
48+
"noUselessCatch": "off",
49+
"noWith": "error"
50+
},
51+
"correctness": {
52+
"noConstAssign": "error",
53+
"noConstantCondition": "error",
54+
"noEmptyCharacterClassInRegex": "error",
55+
"noEmptyPattern": "error",
56+
"noGlobalObjectCalls": "error",
57+
"noInnerDeclarations": "error",
58+
"noInvalidConstructorSuper": "error",
59+
"noNewSymbol": "error",
60+
"noNonoctalDecimalEscape": "error",
61+
"noPrecisionLoss": "error",
62+
"noSelfAssign": "error",
63+
"noSetterReturn": "error",
64+
"noSwitchDeclarations": "error",
65+
"noUndeclaredVariables": "error",
66+
"noUnreachable": "error",
67+
"noUnreachableSuper": "error",
68+
"noUnsafeFinally": "error",
69+
"noUnsafeOptionalChaining": "error",
70+
"noUnusedLabels": "error",
71+
"noUnusedVariables": "error",
72+
"useArrayLiterals": "error",
73+
"useIsNan": "error",
74+
"useValidForDirection": "error",
75+
"useYield": "error"
76+
},
77+
"style": {
78+
"noArguments": "error",
79+
"noVar": "error",
80+
"useBlockStatements": "error",
81+
"useConsistentBuiltinInstantiation": "error",
82+
"useConst": "error",
83+
"useNodejsImportProtocol": "error",
84+
"useSingleVarDeclarator": "error",
85+
"useThrowOnlyError": "error"
86+
},
87+
"suspicious": {
88+
"noAssignInExpressions": "error",
89+
"noAsyncPromiseExecutor": "off",
90+
"noCatchAssign": "error",
91+
"noClassAssign": "error",
92+
"noCompareNegZero": "error",
93+
"noConsole": "off",
94+
"noControlCharactersInRegex": "error",
95+
"noDebugger": "error",
96+
"noDuplicateCase": "error",
97+
"noDuplicateClassMembers": "error",
98+
"noDuplicateObjectKeys": "error",
99+
"noDuplicateParameters": "error",
100+
"noEmptyBlockStatements": "error",
101+
"noFallthroughSwitchClause": "error",
102+
"noFunctionAssign": "error",
103+
"noGlobalAssign": "error",
104+
"noImportAssign": "error",
105+
"noMisleadingCharacterClass": "error",
106+
"noPrototypeBuiltins": "off",
107+
"noRedeclare": "error",
108+
"noShadowRestrictedNames": "error",
109+
"noSparseArray": "error",
110+
"noUnsafeNegation": "error",
111+
"useGetterReturn": "error",
112+
"useIsArray": "error",
113+
"useValidTypeof": "error"
114+
}
115+
}
116+
},
117+
"javascript": {
118+
"formatter": {
119+
"jsxQuoteStyle": "double",
120+
"quoteProperties": "asNeeded",
121+
"trailingCommas": "all",
122+
"semicolons": "always",
123+
"arrowParentheses": "always",
124+
"bracketSameLine": false,
125+
"quoteStyle": "double",
126+
"attributePosition": "auto",
127+
"bracketSpacing": true
128+
}
129+
},
130+
"overrides": [
131+
{
132+
"include": ["src/**/*.ts"],
133+
"linter": {
134+
"rules": {
135+
"style": { "noNonNullAssertion": "off" },
136+
"suspicious": { "noExplicitAny": "off" }
137+
}
138+
}
139+
},
140+
{
141+
"include": ["hak/**/*.ts"],
142+
"linter": {
143+
"rules": {
144+
"style": { "noNonNullAssertion": "off" },
145+
"suspicious": { "noExplicitAny": "off" }
146+
}
147+
}
148+
},
149+
{
150+
"include": ["scripts/**/*.ts"],
151+
"linter": {
152+
"rules": {
153+
"style": { "noNonNullAssertion": "off" },
154+
"suspicious": { "noExplicitAny": "off" }
155+
}
156+
}
157+
},
158+
{
159+
"include": ["playwright/**/*.ts"],
160+
"linter": {
161+
"rules": {
162+
"style": { "noNonNullAssertion": "off" },
163+
"suspicious": { "noExplicitAny": "off" }
164+
}
165+
}
166+
},
167+
{
168+
"include": ["src/**/*.ts"],
169+
"linter": {
170+
"rules": {
171+
"style": { "noNonNullAssertion": "off" },
172+
"suspicious": { "noExplicitAny": "off" }
173+
}
174+
}
175+
},
176+
{
177+
"include": ["hak/**/*.ts"],
178+
"linter": {
179+
"rules": {
180+
"style": { "noNonNullAssertion": "off" },
181+
"suspicious": { "noExplicitAny": "off" }
182+
}
183+
}
184+
},
185+
{
186+
"include": ["scripts/**/*.ts"],
187+
"linter": {
188+
"rules": {
189+
"style": { "noNonNullAssertion": "off" },
190+
"suspicious": { "noExplicitAny": "off" }
191+
}
192+
}
193+
},
194+
{
195+
"include": ["playwright/**/*.ts"],
196+
"linter": {
197+
"rules": {
198+
"style": { "noNonNullAssertion": "off" },
199+
"suspicious": { "noExplicitAny": "off" }
200+
}
201+
}
202+
}
203+
]
204+
}

hak/matrix-seshat/check.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import type HakEnv from "../../scripts/hak/hakEnv.js";
1313
import type { Tool } from "../../scripts/hak/hakEnv.js";
1414
import type { DependencyInfo } from "../../scripts/hak/dep.js";
1515

16-
export default async function (hakEnv: HakEnv, moduleInfo: DependencyInfo): Promise<void> {
16+
export default async function (hakEnv: HakEnv, _moduleInfo: DependencyInfo): Promise<void> {
1717
const tools: Tool[] = [
1818
["rustc", "--version"],
1919
["python", "--version"], // node-gyp uses python for reasons beyond comprehension
@@ -33,7 +33,7 @@ export default async function (hakEnv: HakEnv, moduleInfo: DependencyInfo): Prom
3333
const rustc = childProcess.execFile(
3434
"rustc",
3535
["--target", hakEnv.getTargetId(), "--emit=obj", "-o", "tmp", "-"],
36-
(err, out) => {
36+
(err) => {
3737
if (err) {
3838
reject(
3939
"rustc can't build for target " +

package.json

+5-14
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
"scripts": {
2121
"i18n": "matrix-gen-i18n && yarn i18n:sort && yarn i18n:lint",
2222
"i18n:sort": "jq --sort-keys '.' src/i18n/strings/en_EN.json > src/i18n/strings/en_EN.json.tmp && mv src/i18n/strings/en_EN.json.tmp src/i18n/strings/en_EN.json",
23-
"i18n:lint": "prettier --log-level=silent --write src/i18n/strings/ --ignore-path /dev/null",
23+
"i18n:lint": "biome format --log-level=none --write src/i18n/strings/",
2424
"i18n:diff": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json",
2525
"mkdirs": "mkdirp packages deploys",
2626
"fetch": "yarn run mkdirs && tsx scripts/fetch-package.ts",
2727
"asar-webapp": "asar p webapp webapp.asar",
2828
"start": "yarn run build:ts && yarn run build:res && electron .",
2929
"lint": "yarn lint:types && yarn lint:js && yarn lint:workflows",
30-
"lint:js": "eslint --max-warnings 0 src hak playwright scripts && prettier --check .",
31-
"lint:js-fix": "eslint --fix --max-warnings 0 src hak playwright scripts && prettier --log-level=warn --write .",
30+
"lint:js": "biome lint",
31+
"lint:js-fix": "biome lint --write",
3232
"lint:types": "yarn lint:types:src && yarn lint:types:test && yarn lint:types:scripts && yarn lint:types:hak",
3333
"lint:types:src": "tsc --noEmit",
3434
"lint:types:test": "tsc --noEmit -p playwright/tsconfig.json",
@@ -74,39 +74,30 @@
7474
"@babel/core": "^7.18.10",
7575
"@babel/preset-env": "^7.18.10",
7676
"@babel/preset-typescript": "^7.18.6",
77+
"@biomejs/biome": "^1.9.4",
7778
"@electron/asar": "3.3.1",
7879
"@playwright/test": "1.51.0",
79-
"@stylistic/eslint-plugin": "^3.0.0",
8080
"@types/auto-launch": "^5.0.1",
8181
"@types/counterpart": "^0.18.1",
8282
"@types/minimist": "^1.2.1",
8383
"@types/node": "18.19.79",
8484
"@types/pacote": "^11.1.1",
85-
"@typescript-eslint/eslint-plugin": "^8.0.0",
86-
"@typescript-eslint/parser": "^8.0.0",
8785
"app-builder-lib": "26.0.11",
8886
"chokidar": "^4.0.0",
8987
"detect-libc": "^2.0.0",
9088
"electron": "34.3.1",
9189
"electron-builder": "26.0.11",
9290
"electron-builder-squirrel-windows": "26.0.11",
9391
"electron-devtools-installer": "^4.0.0",
94-
"eslint": "^8.26.0",
95-
"eslint-config-google": "^0.14.0",
96-
"eslint-config-prettier": "^10.0.0",
97-
"eslint-plugin-import": "^2.25.4",
98-
"eslint-plugin-matrix-org": "^2.0.1",
99-
"eslint-plugin-n": "^17.12.0",
100-
"eslint-plugin-unicorn": "^56.0.0",
10192
"glob": "^11.0.0",
10293
"husky": "^9.1.6",
10394
"knip": "^5.0.0",
10495
"lint-staged": "^15.2.10",
10596
"matrix-web-i18n": "^3.2.1",
10697
"mkdirp": "^3.0.0",
98+
"oxlint": "^0.16.0",
10799
"pacote": "^21.0.0",
108100
"plist": "^3.1.0",
109-
"prettier": "^3.0.0",
110101
"rimraf": "^6.0.0",
111102
"tar": "^7.0.0",
112103
"tsx": "^4.19.2",

0 commit comments

Comments
 (0)