1
0

.lintstagedrc.json 359 B

123456789
  1. {
  2. "admin-ui/**/*.ts": ["npm run lint", "npm run format", "git add"],
  3. "admin-ui/**/*.html": ["npm run format", "git add"],
  4. "packages/!(dev-server)/**/*.ts": ["npm run lint", "npm run format", "git add"],
  5. "packages/dashboard/src/lib/**/use-*.{ts,tsx}": [
  6. "node packages/dashboard/scripts/check-lib-imports.js",
  7. "git add"
  8. ]
  9. }