Skip to content

Commit

Permalink
feat: several updates
Browse files Browse the repository at this point in the history
- use biome
- remove eslint
- update bun
- add tsconfig updates
  • Loading branch information
chrisbbreuer committed Sep 17, 2024
1 parent 0e74208 commit f703179
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
* text=auto
*.* text eol=lf
*.lockb binary diff=lockb
1 change: 1 addition & 0 deletions .vscode/dictionary.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
antfu
biomejs
booleanish
bumpp
bunx
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ This Starter Kit comes pre-configured with the following:
- [Be a Good Commitizen](https://www.npmjs.com/package/git-cz) - pre-configured Commitizen & git-cz setup to simplify semantic git commits, versioning, and changelog generations
- [Built With Testing In Mind](https://bun.sh/docs/cli/test) - pre-configured unit-testing powered by [Bun](https://bun.sh/docs/cli/test)
- [Renovate](https://renovatebot.com/) - optimized & automated PR dependency updates
- [Biome](https://biomejs.dev/) - an instant, fast linter & formatter for JavaScript, TypeScript, and CSS
- [GitHub Actions](https://github.com/features/actions) - runs your CI _(fixes code style issues, tags releases & creates its changelogs, runs the test suite, etc.)_

## Testing
Expand Down
Binary file modified bun.lockb
Binary file not shown.
3 changes: 0 additions & 3 deletions eslint.config.js

This file was deleted.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,9 @@
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@commitlint/cli": "^19.5.0",
"@stacksjs/eslint-config": "^0.59.11",
"@types/bun": "^1.1.9",
"@types/node": "^20.16.5",
"bumpp": "^9.5.2",
"changelogen": "^0.5.5",
"commitizen": "^4.3.0",
Expand All @@ -67,7 +66,7 @@
"commit-msg": "bunx --no -- commitlint --edit $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
"*.{js,jsx,ts,tsx,vue}": "bunx biome --fix"
},
"config": {
"commitizen": {
Expand Down
2 changes: 1 addition & 1 deletion pkgx.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dependencies:
bun.sh: ^1.0.28
bun.sh: ^1.1.27
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
"skipLibCheck": true,
"isolatedModules": true,
"isolatedDeclaration": true
}
}

0 comments on commit f703179

Please sign in to comment.