summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-06-05 23:35:55 -0700
committerMatthew Miller <matthew@millerti.me>2020-06-05 23:35:55 -0700
commitae8f85c1a4b44b0d028ce3f3f1fe3052944e6bad (patch)
tree10ea3cfcbcba48e8eda2d53011d44222db3d9560
parentd6f90252e6c5b4d5f7fe2e8471791a3945781aa9 (diff)
Only process .ts and .js files in pre-commit hook
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index c26ec74..9768e7f 100644
--- a/package.json
+++ b/package.json
@@ -36,7 +36,7 @@
}
},
"lint-staged": {
- "*.{ts,js,md,json}": [
+ "*.{ts,js}": [
"prettier --write",
"eslint --fix",
"git add"