1
0

.lintstagedrc.json 568 B

1234567891011
  1. {
  2. "admin-ui/**/*.ts": ["biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"],
  3. "admin-ui/**/*.html": ["biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"],
  4. "packages/!(admin-ui|dev-server)/**/*.ts": [
  5. "biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
  6. ],
  7. "packages/dashboard/**/*.{ts,tsx}": [
  8. "biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
  9. ],
  10. "packages/dashboard/src/lib/**/use-*.{ts,tsx}": ["node packages/dashboard/scripts/check-lib-imports.js"]
  11. }