11 lines
373 B
JavaScript
11 lines
373 B
JavaScript
/**
|
|
* @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'],
|
|
};
|