mirror of
https://github.com/diangogav/EDOpro-server-ts
synced 2026-08-24 00:23:05 -04:00
* chore(tooling): replace ESLint + Prettier with Biome - Add biome.json migrated from the ESLint flat config (preset: none, drop-in rules) with tab indentation, lineWidth 100, and the evolution-types submodule excluded. - Enable unsafeParameterDecoratorsEnabled for DI/worker param decorators. - Switch lint/lint:fix scripts and lint-staged to Biome; drop ESLint and Prettier devDependencies and their config files. - Update .editorconfig to tabs and refresh CONTRIBUTING/testing docs. No source reformatting in this commit. * style: reformat codebase with Biome (spaces to tabs) Mass-apply `biome format --write` across src/ and config files. Indentation converted from 2 spaces to tabs, lineWidth 100, plus Biome's default trailing commas. No logic changes — build and the full test suite (704 tests) pass unchanged. This is a formatting-only commit; see .git-blame-ignore-revs. * chore: ignore the Biome reformat commit in git blame
8 lines
152 B
JSON
8 lines
152 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["node", "jest"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|