Jobber/biome.json
Ammad Ali ac0a1281f4
Enhance RxResume validation, settings handling, and caching (#287)
* feat: enhance validation handling in ReactiveResumeConfigPanel and rxresume-config

* feat: enhance RxResume validation handling in SettingsPage and ReactiveResumeSection

* feat: enhance RxResume settings handling and cache management

* feat: add save-time validation and caching for Reactive Resume settings

* refactor: improve code formatting and readability across multiple files

* fix: improve condition check in hasOverrideKey function

* feat: enhance RxResume validation and settings handling with precheck options

* refactor: streamline RxResume client initialization and improve backup sorting logic
2026-03-19 11:38:04 +00:00

94 lines
2.5 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/2.3.12/schema.json",
"formatter": {
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf"
},
"files": {
"includes": [
"**",
"!!**/dist",
"!!docs-site/.docusaurus",
"!!docs-site/build"
]
},
"css": {
"parser": {
"tailwindDirectives": true
}
},
"linter": {
"rules": {
"style": {
"noRestrictedImports": {
"level": "error",
"options": {
"patterns": [
{
"group": [
"../infra/**",
"../../infra/**",
"../../../infra/**",
"../../../../infra/**",
"../shared/**",
"../../shared/**",
"../../../shared/**",
"../../../../shared/**"
],
"message": "Use path aliases (for example @infra/* or @shared/*) instead of parent-relative imports for shared modules."
},
{
"group": [
"../../api",
"../../api/**",
"../../hooks",
"../../hooks/**",
"../../components",
"../../components/**",
"../../lib",
"../../lib/**",
"../../test",
"../../test/**"
],
"message": "Use @client/* aliases instead of ../../ imports for client modules."
},
{
"group": [
"../../services",
"../../services/**",
"../../repositories",
"../../repositories/**",
"../../config",
"../../config/**",
"../../utils",
"../../utils/**",
"../../pipeline",
"../../pipeline/**",
"../../db",
"../../db/**",
"../../extractors",
"../../extractors/**"
],
"message": "Use @server/* aliases instead of ../../ imports for server modules."
}
]
}
}
}
}
},
"overrides": [
{
"includes": ["**/*.test.ts", "**/*.test.tsx", "**/test-utils.ts"],
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "off"
}
}
}
}
]
}