Files
srjuggernaut-panda-preset/lint-staged.config.ts
SrJuggernaut 88be319334 chore: initial commit
I just realized i was using this without commiting it, so this is a very big commit
2025-08-31 19:43:26 -06:00

8 lines
197 B
TypeScript

import type { Configuration } from 'lint-staged'
const lintStagedConfig: Configuration = {
'*.{ts,tsx,json}': ['biome check --write --no-errors-on-unmatched']
}
export default lintStagedConfig