We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a43e1c commit 6d372a5Copy full SHA for 6d372a5
.husky/pre-commit
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env sh
2
+. "$(dirname -- "$0")/_/husky.sh"
3
+
4
+yarn lint-staged
package.json
@@ -3,6 +3,7 @@
"version": "1.0.2",
"scripts": {
5
"preinstall": "node install-chilkat.js",
6
+ "postinstall": "husky install",
7
"new-stack": "pulumi stack init --secrets-provider=passphrase",
8
"up": "pulumi up --yes --skip-preview",
9
"reup": "pulumi up --refresh --yes --skip-preview",
@@ -59,10 +60,8 @@
59
60
}
61
},
62
"lint-staged": {
- "**/*.ts": [
63
- "eslint --fix",
64
- "git add"
+ "**/*.{js,ts}": [
+ "eslint --fix"
65
]
66
67
68
-
0 commit comments