Skip to content

Commit f146921

Browse files
committed
🔧 chore(scaffold): streamline js tooling
- 🔧 remove `biome.json` so Prettier and ESLint own JS tooling - 📦 refresh scaffold lint and formatting dependencies - 📝 document the formatter and linter workflow in `README.md`
1 parent 076e389 commit f146921

4 files changed

Lines changed: 276 additions & 503 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@ This is a template for a README-driven development project. It is intended to be
44

55
- [About READMEs](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes)
66
- [Basic writing and formatting syntax](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)
7+
8+
## Tooling
9+
10+
- Use `pnpm run format` for formatting. JavaScript and TypeScript formatting is handled by Prettier.
11+
- Use `pnpm run lint` for static analysis. JavaScript and TypeScript linting is handled by ESLint.

biome.json

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

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"prepare": "husky"
99
},
1010
"devDependencies": {
11-
"@eslint/js": "^9.39.2",
11+
"@eslint/js": "^10.0.1",
1212
"autocorrect-node": "^2.14.0",
13-
"eslint": "^9.39.2",
14-
"globals": "^16.5.0",
13+
"eslint": "^10.0.3",
14+
"globals": "^17.4.0",
1515
"husky": "^9.1.7",
16-
"lint-staged": "^16.2.7",
17-
"prettier": "^3.7.4",
18-
"typescript-eslint": "^8.50.0"
16+
"lint-staged": "^16.3.3",
17+
"prettier": "^3.8.1",
18+
"typescript-eslint": "^8.57.0"
1919
}
2020
}

0 commit comments

Comments
 (0)