devtools-bp/lint-staged.config.js
2023-06-17 12:38:13 +02:00

8 lines
312 B
JavaScript

module.exports = {
'{libs,apps,tools,.github}/**/*.{ts,js,json,md,html,css,scss,yml,yaml}': [
'nx affected --target typecheck --uncommitted',
'nx affected --target lint --uncommitted --fix true',
'nx affected --target test --uncommitted',
'nx format:write --uncommitted --libs-and-apps'
]
};