fix: run lint on complete project before commit (#2802)

This commit is contained in:
Piyush Gupta
2024-07-08 12:47:47 +05:30
committed by GitHub
parent 6a0cabf249
commit 60256533e3
2 changed files with 6 additions and 1 deletions
+2 -1
View File
@@ -43,7 +43,8 @@
},
"lint-staged": {
"(apps|packages)/**/*.{js,ts,jsx,tsx}": [
"prettier --write"
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"