Skip to content

Commit aee9b79

Browse files
committed
fix ci
1 parent 55ceacc commit aee9b79

File tree

5 files changed

+27
-20
lines changed

5 files changed

+27
-20
lines changed

biome.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
33
"formatter": {
44
"indentWidth": 2,
55
"indentStyle": "space"
@@ -17,7 +17,7 @@
1717
}
1818
},
1919
"files": {
20-
"ignore": ["./index.js", "./eslint-config-prettier.js"],
20+
"ignore": ["./index.js", "./package.json", "./eslint-config-prettier.js"],
2121
"ignoreUnknown": true
2222
}
2323
}

bun.lockb

-146 KB
Binary file not shown.

bunfig.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[install.lockfile]
2+
save = false

package.json

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
{
22
"name": "eslint-config-biome",
3-
"version": "1.7.1",
3+
"version": "1.7.3",
44
"description": "Disables ESLint rules that have a recommended and equivalent Biome rule",
55
"main": "index.js",
66
"scripts": {
7-
"format:check": "biome check . && eslint .",
8-
"format": "biome check --apply-unsafe . && eslint --fix",
9-
"tsw": "tsc --watch --noEmit",
10-
"typecheck": "tsc --noEmit",
11-
"pre-commit": "bun format:check && bun typecheck && bun test",
7+
"format": "biome check --apply-unsafe . && eslint --fix . package.json",
8+
"format:check": "biome check . && eslint . package.json",
9+
"pre-commit": "bun format && bun typecheck && bun test && git add -A",
1210
"prepare": "husky install",
11+
"start": "bun run scripts/index.ts",
1312
"test:watch": "bun test --watch",
14-
"watch": "bun --watch run scripts/index.ts",
15-
"start": "bun run scripts/index.ts"
13+
"tsw": "tsc --watch --noEmit",
14+
"typecheck": "tsc --noEmit",
15+
"watch": "bun --watch run scripts/index.ts"
1616
},
17-
"repository": "SrBrahma/eslint-config-biome",
17+
"files": [
18+
"index.js",
19+
"eslint-config-prettier.js"
20+
],
21+
"license": "MIT",
1822
"keywords": [
1923
"biome",
2024
"eslint-config",
@@ -27,16 +31,15 @@
2731
"lint",
2832
"style"
2933
],
30-
"license": "MIT",
31-
"files": ["index.js", "eslint-config-prettier.js"],
34+
"repository": "SrBrahma/eslint-config-biome",
3235
"devDependencies": {
33-
"@biomejs/biome": "^1.7.1",
36+
"@biomejs/biome": "^1.7.3",
3437
"@sindresorhus/tsconfig": "^5.0.0",
35-
"@types/bun": "^1.0.0",
38+
"@types/bun": "^1.1.3",
3639
"@types/jsdom": "^21.1.6",
37-
"eslint-config-gev": "4.3.0",
38-
"husky": "^8.0.1",
39-
"jsdom": "^23.0.1",
40-
"typescript": "^5.3.3"
40+
"eslint-config-gev": "4.5.1",
41+
"husky": "^9.0.11",
42+
"jsdom": "^24.1.0",
43+
"typescript": "^5.4.5"
4144
}
4245
}

scripts/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ const main = async () => {
2828
console.log(`Generated ${filenames.index} & ${filenames.prettier}!`)
2929
}
3030

31-
main()
31+
main().catch((err) => {
32+
throw err
33+
})

0 commit comments

Comments
 (0)