6eb7bf6d0d
Bumps [lint-staged](https://github.com/lint-staged/lint-staged) from 15.5.2 to 16.2.7. - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v15.5.2...v16.2.7) --- updated-dependencies: - dependency-name: lint-staged dependency-version: 16.2.7 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
606 B
JSON
23 lines
606 B
JSON
{
|
|
"name": "medassist-ng",
|
|
"private": true,
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"lint": "cd backend && npm run lint && cd ../frontend && npm run lint",
|
|
"lint:fix": "cd backend && npm run lint:fix && cd ../frontend && npm run lint:fix"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.15",
|
|
"husky": "^9.1.0",
|
|
"lint-staged": "^16.2.7"
|
|
},
|
|
"lint-staged": {
|
|
"backend/src/**/*.ts": [
|
|
"npx @biomejs/biome check --write --no-errors-on-unmatched"
|
|
],
|
|
"frontend/src/**/*.{ts,tsx,css}": [
|
|
"npx @biomejs/biome check --write --no-errors-on-unmatched"
|
|
]
|
|
}
|
|
}
|