9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
/**
|
|
* @filename: lint-staged.config.js
|
|
* @type {import('lint-staged').Configuration}
|
|
*/
|
|
|
|
export default {
|
|
'*': 'biome check --write --no-errors-on-unmatched'
|
|
}
|