Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit 1c838c3

Browse files
authored
Fix JSON lint-staged check (#29)
1 parent c1c8062 commit 1c838c3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

‎package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,13 @@
5050
]
5151
},
5252
"lint-staged": {
53-
"*.{js,jsx,ts,tsx,json}": [
53+
"*.{js,jsx,ts,tsx}": [
5454
"prettier --write",
55-
"eslint --fix",
56-
"eslint static/language/*.json"
55+
"eslint --fix"
56+
],
57+
"static/language/*.json":
58+
[
59+
"eslint"
5760
]
5861
},
5962
"husky": {

0 commit comments

Comments
 (0)