aboutsummaryrefslogtreecommitdiffstats
path: root/biome.json
diff options
context:
space:
mode:
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
+ }
+ }
+ }
+ }
+ }
+}