diff --git a/biome.json b/biome.json index d510781..e83d156 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.4/schema.json", "vcs": { "enabled": true, "clientKind": "git", @@ -7,25 +7,40 @@ }, "files": { "ignoreUnknown": false, - "ignore": [] + "includes": ["**"] }, "formatter": { "enabled": true, "indentStyle": "space", "lineWidth": 120 }, - "organizeImports": { - "enabled": true + "assist": { + "enabled": false }, "linter": { "enabled": true, "rules": { "recommended": true, "correctness": { - "noUndeclaredVariables": "error" + "noUndeclaredVariables": "error", + "noUnusedImports": "off", + "noUnusedVariables": "off", + "noUnusedFunctionParameters": "off", + "useExhaustiveDependencies": "off" + }, + "suspicious": { + "noTemplateCurlyInString": "off", + "noUnknownAtRules": "off" + }, + "complexity": { + "noImportantStyles": "off" + }, + "a11y": { + "noSvgWithoutTitle": "off", + "useButtonType": "off" } }, - "ignore": ["public/**/*"] + "includes": ["**", "!**/public/**/*"] }, "javascript": { "formatter": { @@ -38,6 +53,9 @@ }, "linter": { "enabled": true + }, + "parser": { + "tailwindDirectives": true } } } diff --git a/package.json b/package.json index 5a4a14a..25c7774 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,9 @@ "build": "vite build", "preview": "vite preview" }, - "keywords": ["lando"], + "keywords": [ + "lando" + ], "author": "Aaron Feledy", "license": "GPL-3.0-or-later", "dependencies": {