Skip to content

Commit bd9b714

Browse files
committed
chore: replace half-baked eslint setup with oxlint
1 parent 5f9ce9c commit bd9b714

53 files changed

Lines changed: 2261 additions & 4150 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ node_modules
33
.DS_Store
44
.netlify
55
coverage
6-
.eslintcache
6+
.oxlint_cache
77
.cache
88
.vscode
99
.fleet

.oxlintrc.json5

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "./node_modules/oxlint/configuration_schema.json",
3+
"plugins": ["typescript", "unicorn", "oxc", "node", "vitest", "promise", "jsdoc"],
4+
"categories": {
5+
"correctness": "error"
6+
},
7+
"ignorePatterns": ["**/node_modules/**"],
8+
"rules": {
9+
"vitest/warn-todo": "off",
10+
// https://github.com/oxc-project/oxc/issues/18851
11+
"jest/valid-expect": "off"
12+
}
13+
}

eslint.config.js

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

0 commit comments

Comments
 (0)