aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-11-30 06:18:13 +0900
committernsfisis <nsfisis@gmail.com>2025-12-04 23:26:01 +0900
commitd77ed27bc66821aa56398ff8dd1b885af7903672 (patch)
tree46da256624c7bb7da19b720d7ba90b2ee059a08e /package.json
parent197d8a70a25663fb2e4096062fae8ac471522ba7 (diff)
downloadkioku-d77ed27bc66821aa56398ff8dd1b885af7903672.tar.gz
kioku-d77ed27bc66821aa56398ff8dd1b885af7903672.tar.zst
kioku-d77ed27bc66821aa56398ff8dd1b885af7903672.zip
feat(dev): configure Biome linter
Add Biome for linting and formatting with recommended rules. Reformat existing JSON files to use tabs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json36
1 files changed, 20 insertions, 16 deletions
diff --git a/package.json b/package.json
index b74b508..a57879f 100644
--- a/package.json
+++ b/package.json
@@ -1,18 +1,22 @@
{
- "name": "kioku",
- "version": "0.1.0",
- "description": "An Anki clone",
- "main": "index.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "typecheck": "tsc --build pkgs/*/tsconfig.json"
- },
- "keywords": [],
- "author": "nsfisis",
- "license": "MIT",
- "packageManager": "pnpm@10.23.0",
- "type": "module",
- "devDependencies": {
- "typescript": "^5.9.3"
- }
+ "name": "kioku",
+ "version": "0.1.0",
+ "description": "An Anki clone",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "typecheck": "tsc --build pkgs/*/tsconfig.json",
+ "lint": "biome check .",
+ "lint:fix": "biome check --write .",
+ "format": "biome format --write ."
+ },
+ "keywords": [],
+ "author": "nsfisis",
+ "license": "MIT",
+ "packageManager": "pnpm@10.23.0",
+ "type": "module",
+ "devDependencies": {
+ "@biomejs/biome": "^2.3.8",
+ "typescript": "^5.9.3"
+ }
}