devtools-bp/lint-staged.config.js
2023-06-04 11:38:27 +02:00

7 lines
248 B
JavaScript

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