You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
377 B
8 lines
377 B
module.exports = {
|
|
"*.{js,jsx,ts,tsx}": ["eslint --fix", "prettier --write"],
|
|
"{!(package)*.json,.!(browserslist)*rc}": ["prettier --write--parser json"],
|
|
"package.json": ["prettier --write"],
|
|
"*.vue": ["eslint --fix", "prettier --write", "stylelint --fix"],
|
|
"*.{vue,css,scss,postcss,less}": ["stylelint --fix", "prettier --write"],
|
|
"*.md": ["prettier --write"]
|
|
};
|