mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
module.exports = {
|
|
'**/*.{ts,tsx,cts,mts}': ['eslint --fix'],
|
|
'**/*.{js,jsx,cjs,mjs}': ['prettier --write'],
|
|
'**/*.{yml,mdx}': ['prettier --write'],
|
|
'**/*/package.json': ['npm run precommit'],
|
|
};
|