Skip to content

Commit 913d37d

Browse files
committed
update scripts to use biome, remove eslint and prettier
1 parent a07b3f1 commit 913d37d

File tree

7 files changed

+160
-1396
lines changed

7 files changed

+160
-1396
lines changed

.eslintignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 70 deletions
This file was deleted.

.prettierignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.prettierrc.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

biome.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,26 @@
99
"linter": {
1010
"enabled": true,
1111
"rules": {
12-
"recommended": false,
12+
"recommended": true,
1313
"correctness": {
1414
"noUnusedVariables": "error",
1515
"noUndeclaredVariables": "off"
1616
},
1717
"style": {
1818
"useConst": "off",
1919
"useBlockStatements": "off",
20-
"useSelfClosingElements": "off"
20+
"useSelfClosingElements": "off",
21+
"useTemplate": "warn"
2122
},
2223
"suspicious": {
23-
"noDebugger": "error",
2424
"noExtraNonNullAssertion": "warn",
2525
"noTsIgnore": "warn",
26-
"useAdjacentOverloadSignatures": "warn"
26+
"useAdjacentOverloadSignatures": "warn",
27+
"noImplicitAnyLet": "warn",
28+
"noAssignInExpressions": "warn",
29+
"noThenProperty": "warn",
30+
"noShadowRestrictedNames": "warn",
31+
"useIterableCallbackReturn": "warn"
2732
}
2833
}
2934
},

0 commit comments

Comments
 (0)