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