7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import type { Configuration } from "lint-staged"
|
|
|
|
const lintStagedConfig: Configuration = {
|
|
"*": "biome check --write --no-errors-on-unmatched"
|
|
}
|
|
|
|
export default lintStagedConfig |