Fix: lint-staged not working properly(#3382)

This commit is contained in:
Diego Mello 2021-09-14 17:22:26 -03:00 committed by GitHub
parent 28d7a1bab2
commit 201b84e6e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@
}, },
"lint-staged": { "lint-staged": {
"*.{js,ts,tsx}": [ "*.{js,ts,tsx}": [
"prettier-lint", "prettier --write",
"eslint",
"jest --bail --findRelatedTests" "jest --bail --findRelatedTests"
] ]
}, },