Skip to content

Commit 28d0693

Browse files
authored
Merge pull request #106 from phyloref/replace-eslint-with-biome
Used Claude to replace ESLint (with Airbnb base style) with Biome because the Airbnb base style does not appear to be maintained. This will bring this repo in line with phyx.js (phyloref/phyx.js#156). Also removed the `push` trigger in GitHub Actions -- the `pull_request` trigger covers all of our use cases.
2 parents 2f00e96 + dc7b284 commit 28d0693

File tree

11 files changed

+531
-3525
lines changed

11 files changed

+531
-3525
lines changed

.eslintrc.json

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

.github/workflows/test.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Test
22

33
on:
4-
push:
54
pull_request:
65
workflow_dispatch:
76

@@ -11,7 +10,7 @@ jobs:
1110

1211
strategy:
1312
matrix:
14-
node-version: [10.x, 12.x, 14.x]
13+
node-version: [18.x, 20.x, 24.x, 25.x]
1514

1615
steps:
1716
- uses: actions/checkout@v5

biome.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"linter": {
4+
"enabled": true,
5+
"rules": {
6+
"recommended": true
7+
}
8+
},
9+
"formatter": {
10+
"enabled": false
11+
},
12+
"json": {
13+
"linter": {
14+
"enabled": false
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)