- Add search profiles (DB, API, settings UI) and wire into scorer/pipeline search terms. - Add cover letter generation (service, job action, JobDetail UI). - Align JobSpy Indeed country with country-level search geography when settings conflict; warn in logs. - Infer country from search cities via inferCountryKeyFromSearchGeography (shared). - Ignore extractor venv/storage and local data in Biome; ignore orchestrator/storage and JobSpy .venv in git. - Vite: do not watch orchestrator/storage (prevents reloads during startup.jobs pipeline). - JobSpy: document Python 3.10+ and venv setup in README/requirements. - Onboarding and settings: local resume path handling, orchestrator .env.example for Vite. Made-with: Cursor
98 lines
2.6 KiB
JSON
98 lines
2.6 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.12/schema.json",
|
|
"formatter": {
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineEnding": "lf"
|
|
},
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!!**/dist",
|
|
"!!**/.venv",
|
|
"!!docs-site/.docusaurus",
|
|
"!!docs-site/build",
|
|
"!!extractors/jobspy/storage",
|
|
"!!orchestrator/storage",
|
|
"!!data"
|
|
]
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|