Skip to content

Commit 74fab5f

Browse files
B4nanclaude
andcommitted
chore: replace eslint with oxlint and add lint step to CI
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 099e685 commit 74fab5f

5 files changed

Lines changed: 841 additions & 5111 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
- name: Install
2828
run: npm ci
2929

30+
- name: Lint
31+
run: npm run lint
32+
3033
- name: Build
3134
run: npm run build
3235

eslint.config.mjs

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

oxlintrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
3+
"plugins": ["typescript", "react", "nextjs"],
4+
"ignorePatterns": [".next/**", "out/**", "build/**"],
5+
"rules": {
6+
"no-unused-vars": "warn"
7+
}
8+
}

0 commit comments

Comments
 (0)