mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
5 lines
193 B
JavaScript
5 lines
193 B
JavaScript
/** @type {import('lint-staged').Config} */
|
|
module.exports = {
|
|
'**/*.{ts,tsx,cts,mts,js,jsx,cjs,mjs,json,css}': 'npm run lint:fix -- --staged',
|
|
'**/*/package.json': 'npm run precommit',
|
|
};
|