oa_front/lint-staged.config.js

11 lines
373 B
JavaScript
Raw Normal View History

2024-02-27 17:22:27 +08:00
/**
* @type {import('stylelint').Config}
*/
module.exports = {
'*.{js,jsx,ts,tsx}': ['eslint --fix', 'prettier --write'],
'*.json': ['prettier --write'],
'*.vue': ['eslint --fix', 'prettier --write', 'stylelint --fix --allow-empty-input'],
'*.{scss,less,styl,html}': ['stylelint --fix --allow-empty-input', 'prettier --write'],
'*.md': ['prettier --write'],
};