chore: simplify lint-staged config

This commit is contained in:
chenjiahan 2020-04-21 22:30:29 +08:00
parent ce0e04c952
commit 26449eb1ea
2 changed files with 6 additions and 23 deletions

View File

@ -30,21 +30,10 @@
} }
}, },
"lint-staged": { "lint-staged": {
"*.md": [ "*.md": "prettier --write",
"prettier --write" "*.{ts,tsx,js,vue,less}": "prettier --write",
], "*.{ts,tsx,js,vue}": "eslint --fix",
"*.{ts,tsx,js,vue,less}": [ "*.{vue,css,less}": "stylelint --fix"
"prettier --write",
"git add"
],
"*.{ts,tsx,js,vue}": [
"eslint --fix",
"git add"
],
"*.{vue,css,less}": [
"stylelint --fix",
"git add"
]
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -26,14 +26,8 @@
} }
}, },
"lint-staged": { "lint-staged": {
"*.{ts,tsx,js,jsx,vue}": [ "*.{ts,tsx,js,jsx,vue}": "eslint --fix",
"eslint --fix", "*.{vue,css,less,scss}": "stylelint --fix"
"git add"
],
"*.{vue,css,less,scss}": [
"stylelint --fix",
"git add"
]
}, },
"peerDependencies": { "peerDependencies": {
"vue": "^2.6.11", "vue": "^2.6.11",