mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
8 lines
330 B
JavaScript
8 lines
330 B
JavaScript
/** @type {import('lint-staged').Config} */
|
|
module.exports = {
|
|
'**/*.{ts,tsx,cts,mts}': (files) => `eslint --fix ${files.join(' ')}`,
|
|
'**/*.{js,jsx,cjs,mjs}': (files) => `prettier --write ${files.join(' ')}`,
|
|
'**/*.{yml,mdx}': (files) => `prettier --write ${files.join(' ')}`,
|
|
'**/*/package.json': 'npm run precommit',
|
|
};
|