CHANGE lint-staged config after upgrading

This commit is contained in:
Norbert de Langen 2020-02-03 13:15:59 +01:00
parent b063989550
commit aa7fa009e8
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 9 additions and 36 deletions

View File

@ -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": {
```

View File

@ -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": {