mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-02 10:57:24 +08:00
17 lines
503 B
Plaintext
17 lines
503 B
Plaintext
{
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"prettier --cache --ignore-unknown --write",
|
|
"eslint --cache --fix"
|
|
],
|
|
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
|
|
"prettier --cache --write--parser json"
|
|
],
|
|
"package.json": ["prettier --cache --write"],
|
|
"*.vue": ["prettier --write", "eslint --cache --fix", "stylelint --fix"],
|
|
"*.{css,scss,html}": [
|
|
"prettier --cache --ignore-unknown --write",
|
|
"stylelint --fix"
|
|
],
|
|
"*.md": ["prettier --cache --ignore-unknown --write"]
|
|
}
|