{ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", "organizeImports": { "enabled": true }, "linter": { "enabled": true, "rules": { "all": true, "correctness": { "noNodejsModules": "off", "useImportExtensions": "off", "noUnknownFunction": "off" }, "complexity": { "noExcessiveCognitiveComplexity": "off" }, "suspicious": { "noReactSpecificProps": "off" }, "performance": { "useTopLevelRegex": "off" }, "style": { "noDefaultExport": "off", "noParameterProperties": "off", "noNamespaceImport": "off", "useFilenamingConvention": "off", "useNamingConvention": { "level": "warn", "options": { "requireAscii": false, "strictCase": false, "conventions": [ { "selector": { "kind": "typeProperty" }, "formats": [ "camelCase", "CONSTANT_CASE", "PascalCase", "snake_case" ] }, { "selector": { "kind": "objectLiteralProperty", "scope": "any" }, "formats": [ "camelCase", "CONSTANT_CASE", "PascalCase", "snake_case" ] }, { "selector": { "kind": "classMethod", "scope": "any" }, "formats": ["camelCase", "PascalCase"] }, { "selector": { "kind": "functionParameter", "scope": "any" }, "formats": ["snake_case", "camelCase"] } ] } } }, "nursery": { "noDuplicateElseIf": "warn" } } }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 4 }, "javascript": { "globals": ["Bun"] }, "files": { "ignore": ["node_modules", ".next", ".output", "out", "public/pl.js"] } }