I just realized i was using this without commiting it, so this is a very big commit
8 lines
197 B
TypeScript
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
|