diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..150e0a7 --- /dev/null +++ b/biome.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.6.4/schema.json", + "organizeImports": { + "enabled": true + }, + "files": { + "include": [ + "./apps/**/src/**/*.ts" + ] + }, + "vcs": { + "enabled": true, + "clientKind": "git" + }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "performance": { + "recommended": true, + "noDelete": "off" + }, + "suspicious": { + "noExplicitAny": "warn" + }, + "complexity": { + "useLiteralKeys": "off" + }, + "style": { + "useImportType": "off" + } + } + }, + "formatter": { + "indentStyle": "tab", + "indentWidth": 2, + "lineWidth": 80 + }, + "javascript": { + "parser": { + "unsafeParameterDecoratorsEnabled": true + } + } +} \ No newline at end of file