Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SrBrahma committed May 26, 2024
1 parent 55ceacc commit aee9b79
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 20 deletions.
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"formatter": {
"indentWidth": 2,
"indentStyle": "space"
Expand All @@ -17,7 +17,7 @@
}
},
"files": {
"ignore": ["./index.js", "./eslint-config-prettier.js"],
"ignore": ["./index.js", "./package.json", "./eslint-config-prettier.js"],
"ignoreUnknown": true
}
}
Binary file removed bun.lockb
Binary file not shown.
2 changes: 2 additions & 0 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[install.lockfile]
save = false
37 changes: 20 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
{
"name": "eslint-config-biome",
"version": "1.7.1",
"version": "1.7.3",
"description": "Disables ESLint rules that have a recommended and equivalent Biome rule",
"main": "index.js",
"scripts": {
"format:check": "biome check . && eslint .",
"format": "biome check --apply-unsafe . && eslint --fix",
"tsw": "tsc --watch --noEmit",
"typecheck": "tsc --noEmit",
"pre-commit": "bun format:check && bun typecheck && bun test",
"format": "biome check --apply-unsafe . && eslint --fix . package.json",
"format:check": "biome check . && eslint . package.json",
"pre-commit": "bun format && bun typecheck && bun test && git add -A",
"prepare": "husky install",
"start": "bun run scripts/index.ts",
"test:watch": "bun test --watch",
"watch": "bun --watch run scripts/index.ts",
"start": "bun run scripts/index.ts"
"tsw": "tsc --watch --noEmit",
"typecheck": "tsc --noEmit",
"watch": "bun --watch run scripts/index.ts"
},
"repository": "SrBrahma/eslint-config-biome",
"files": [
"index.js",
"eslint-config-prettier.js"
],
"license": "MIT",
"keywords": [
"biome",
"eslint-config",
Expand All @@ -27,16 +31,15 @@
"lint",
"style"
],
"license": "MIT",
"files": ["index.js", "eslint-config-prettier.js"],
"repository": "SrBrahma/eslint-config-biome",
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"@biomejs/biome": "^1.7.3",
"@sindresorhus/tsconfig": "^5.0.0",
"@types/bun": "^1.0.0",
"@types/bun": "^1.1.3",
"@types/jsdom": "^21.1.6",
"eslint-config-gev": "4.3.0",
"husky": "^8.0.1",
"jsdom": "^23.0.1",
"typescript": "^5.3.3"
"eslint-config-gev": "4.5.1",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"typescript": "^5.4.5"
}
}
4 changes: 3 additions & 1 deletion scripts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ const main = async () => {
console.log(`Generated ${filenames.index} & ${filenames.prettier}!`)
}

main()
main().catch((err) => {
throw err
})

0 comments on commit aee9b79

Please sign in to comment.