aboutsummaryrefslogtreecommitdiffstats
path: root/biome.json
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2025-10-29 15:18:30 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2025-11-03 10:54:48 +0200
commitb03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17 (patch)
treeefc0ce6823ab8611d9c6a0bf27ecdbd124638b73 /biome.json
downloadhousing-b03ee7032b2ea2d4d22ab7ec1346b7c9331cfc17.tar.zst
Initial commit
Diffstat (limited to 'biome.json')
-rw-r--r--biome.json49
1 files changed, 49 insertions, 0 deletions
diff --git a/biome.json b/biome.json
new file mode 100644
index 0000000..675f3fb
--- /dev/null
+++ b/biome.json
@@ -0,0 +1,49 @@
+{
+ "assist": {
+ "actions": {
+ "source": {
+ "organizeImports": "on",
+ "recommended": true,
+ "useSortedAttributes": "on",
+ "useSortedKeys": "on"
+ }
+ },
+ "enabled": true
+ },
+ "files": {
+ "ignoreUnknown": true,
+ "includes": ["./app/*", "./server.js", "./*.json", "./app/data/*.json"],
+ "maxSize": 10000000
+ },
+ "formatter": {
+ "indentStyle": "tab",
+ "lineWidth": 100
+ },
+ "linter": {
+ "enabled": true,
+ "rules": {
+ "complexity": {
+ "noStaticOnlyClass": "off"
+ },
+ "correctness": {
+ "noUnusedVariables": {
+ "fix": "none",
+ "level": "warn"
+ }
+ },
+ "nursery": {
+ "recommended": true
+ },
+ "recommended": true,
+ "style": {
+ "useNamingConvention": {
+ "level": "error",
+ "options": {
+ "requireAscii": false,
+ "strictCase": false
+ }
+ }
+ }
+ }
+ }
+}