8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import type { Configuration } from "lint-staged"
|
|
|
|
const lintStagedConfig: Configuration = {
|
|
"*": ["biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"]
|
|
}
|
|
|
|
export default lintStagedConfig
|