diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0674195 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: clean format build + +format: + biome format --write . + +build: + zola build + +clean: + rm -rf public/ diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..a15a026 --- /dev/null +++ b/biome.json @@ -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 + } + } +}