Added: biome for formatting, Makefile

This commit is contained in:
fr
2025-08-27 19:28:14 +02:00
parent bea14aa72b
commit 7f8a105ba4
2 changed files with 25 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
all: clean format build
format:
biome format --write .
build:
zola build
clean:
rm -rf public/
+15
View File
@@ -0,0 +1,15 @@
{
"$schema": "https://biomejs.dev/schemas/1.7.3/schema.json",
"files": {
"ignore": [".vscode/", "node_modules/", "public/"]
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": false,
"rules": {
"recommended": true
}
}
}