aboutsummaryrefslogtreecommitdiffhomepage
path: root/biome.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 /biome.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 'biome.json')
-rw-r--r--biome.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/biome.json b/biome.json
new file mode 100644
index 0000000..ba74412
--- /dev/null
+++ b/biome.json
@@ -0,0 +1,34 @@
+{
+ "$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
+ "vcs": {
+ "enabled": true,
+ "clientKind": "git",
+ "useIgnoreFile": true
+ },
+ "files": {
+ "ignoreUnknown": false
+ },
+ "formatter": {
+ "enabled": true,
+ "indentStyle": "tab"
+ },
+ "linter": {
+ "enabled": true,
+ "rules": {
+ "recommended": true
+ }
+ },
+ "javascript": {
+ "formatter": {
+ "quoteStyle": "double"
+ }
+ },
+ "assist": {
+ "enabled": true,
+ "actions": {
+ "source": {
+ "organizeImports": "on"
+ }
+ }
+ }
+}