mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
CHANGE lint-staged config after upgrading
This commit is contained in:
parent
b063989550
commit
aa7fa009e8
@ -333,10 +333,7 @@ Next we add a 'lint-staged' field to the `package.json`, for example:
|
||||
// ...
|
||||
},
|
||||
+ "lint-staged": {
|
||||
+ "src/**/*.{js,jsx,json,css}": [
|
||||
+ "prettier --single-quote --write",
|
||||
+ "git add"
|
||||
+ ]
|
||||
+ "src/**/*.{js,jsx,json,css}": [ "prettier --single-quote --write" ]
|
||||
+ },
|
||||
"scripts": {
|
||||
```
|
||||
|
40
package.json
40
package.json
@ -81,38 +81,14 @@
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.html": [
|
||||
"yarn lint:js --fix",
|
||||
"git add"
|
||||
],
|
||||
"*.js": [
|
||||
"yarn lint:js --fix",
|
||||
"git add"
|
||||
],
|
||||
"*.json": [
|
||||
"yarn lint:js --fix",
|
||||
"git add"
|
||||
],
|
||||
"*.jsx": [
|
||||
"yarn lint:js --fix",
|
||||
"git add"
|
||||
],
|
||||
"*.mjs": [
|
||||
"yarn lint:js --fix",
|
||||
"git add"
|
||||
],
|
||||
"*.ts": [
|
||||
"yarn lint:js --fix",
|
||||
"git add"
|
||||
],
|
||||
"*.tsx": [
|
||||
"yarn lint:js --fix",
|
||||
"git add"
|
||||
],
|
||||
"package.json": [
|
||||
"yarn lint:package",
|
||||
"git add"
|
||||
]
|
||||
"*.html": [ "yarn lint:js --fix" ],
|
||||
"*.js": [ "yarn lint:js --fix" ],
|
||||
"*.json": [ "yarn lint:js --fix" ],
|
||||
"*.jsx": [ "yarn lint:js --fix" ],
|
||||
"*.mjs": [ "yarn lint:js --fix" ],
|
||||
"*.ts": [ "yarn lint:js --fix" ],
|
||||
"*.tsx": [ "yarn lint:js --fix" ],
|
||||
"package.json": [ "yarn lint:package" ]
|
||||
},
|
||||
"browserslist": "defaults",
|
||||
"devDependencies": {
|
||||
|
Loading…
x
Reference in New Issue
Block a user