mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-11-29 17:57:37 +08:00
21 lines
569 B
Plaintext
21 lines
569 B
Plaintext
{
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"prettier --cache --ignore-unknown --write",
|
|
"eslint --cache --fix"
|
|
],
|
|
"{!(package)*.json,*.code-snippets,.!({browserslist,npm,nvm})*rc}": [
|
|
"prettier --cache --write--parser json"
|
|
],
|
|
"package.json": ["prettier --cache --write"],
|
|
"*.vue": [
|
|
"prettier --write",
|
|
"eslint --cache --fix",
|
|
"stylelint --fix --allow-empty-input"
|
|
],
|
|
"*.{css,scss,html}": [
|
|
"prettier --cache --ignore-unknown --write",
|
|
"stylelint --fix --allow-empty-input"
|
|
],
|
|
"*.md": ["prettier --cache --ignore-unknown --write"]
|
|
}
|