Fix ruff and ESLint warnings in tests and tsconfig

- Wrap long dict literal in test_geo_service.py across multiple lines (E501)
- Combine nested with statements in test_jail_service.py (SIM117)
- Add vitest.config.ts to tsconfig.node.json include so ESLint
  parserOptions.project resolves it correctly
This commit is contained in:
2026-03-11 18:35:30 +01:00
parent 576ec43854
commit 0a73c49d01
3 changed files with 16 additions and 7 deletions

View File

@@ -9,5 +9,5 @@
"allowSyntheticDefaultImports": true,
"strict": true
},
"include": ["vite.config.ts"]
"include": ["vite.config.ts", "vitest.config.ts"]
}