{ "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json", "extends": ["../../biome2.json"], "files": { "includes": ["src/**/*", "scripts/**/*"] }, "overrides": [ { "includes": ["**/*.ts", "**/*.test.ts"], "linter": { "rules": { "style": { "useImportType": "off" }, "suspicious": { "noExplicitAny": "error" } } } }, { "includes": ["**/*.ts"], "linter": { "rules": { "suspicious": { "noConsole": "off", "noExplicitAny": "warn" } } } }, { "includes": ["scripts/**/*"], "linter": { "rules": { "suspicious": { "noExplicitAny": "off" } } } } ] }