forked from baron/baron-sso
- Centralized biome.json, tailwind.config.ts, and vite.config.ts into common/config. - Updated sub-apps to inherit from shared base configurations. - Deduplicated dependencies across apps using common workspace. - Fixed TypeScript resolution issues by restoring necessary build dependencies. - Removed obsolete package-lock.json files. - Applied minor import fixes via Biome. - Fixed react-router-dom v7 type errors.
33 lines
569 B
JSON
33 lines
569 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space"
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"style": {
|
|
"useEnumInitializers": "off"
|
|
},
|
|
"a11y": {
|
|
"noLabelWithoutControl": "off"
|
|
}
|
|
}
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"ignore": [
|
|
"dist",
|
|
".vite",
|
|
"node_modules",
|
|
"tsconfig*.json",
|
|
"test-results",
|
|
"test-results.nobody-backup",
|
|
"playwright-report"
|
|
]
|
|
}
|
|
}
|