Skip to content

Commit 7eadacc

Browse files
committed
chore: migrate to oxtools
1 parent 505a285 commit 7eadacc

File tree

7 files changed

+439
-1256
lines changed

7 files changed

+439
-1256
lines changed

.eslintrc.js

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

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore formatting commits
2+
505a28534ac8a94803b5bfcf82289856795374c0

.github/workflows/eslint.yml

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

.github/workflows/lint.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Linting
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 22
18+
cache: 'npm'
19+
- name: Install dependencies
20+
run: npm ci
21+
- name: Run Lint
22+
run: npm run lint
23+
- name: Run Format Check
24+
run: npm run format -- --check

.prettierrc

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

0 commit comments

Comments
 (0)