aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-17 09:43:20 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-17 04:14:23 +0000
commit87327c1d4184941952883fa4b5e212573b4b06a5 (patch)
tree2b5c82a0717fac8159042e2329942d130ee95252
parentAdding husky pre-commit hook (diff)
downloadferdium-recipes-87327c1d4184941952883fa4b5e212573b4b06a5.tar.gz
ferdium-recipes-87327c1d4184941952883fa4b5e212573b4b06a5.tar.zst
ferdium-recipes-87327c1d4184941952883fa4b5e212573b4b06a5.zip
Missed 'prepare' step that enforces the installation of the git pre-commit hooks
-rw-r--r--.gitignore7
-rw-r--r--.husky/.gitignore1
-rw-r--r--package.json1
3 files changed, 8 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index dd555ab..3af0158 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,8 @@
1.idea
1.DS_Store 2.DS_Store
2node_modules 3node_modules
3archives/ \ No newline at end of file 4archives/
5yarn-error.log
6npm-debug.log*
7lerna-debug.log
8server*.log
diff --git a/.husky/.gitignore b/.husky/.gitignore
new file mode 100644
index 0000000..31354ec
--- /dev/null
+++ b/.husky/.gitignore
@@ -0,0 +1 @@
_
diff --git a/package.json b/package.json
index 12ef1f8..60d1574 100644
--- a/package.json
+++ b/package.json
@@ -7,6 +7,7 @@
7 "doc": "docs" 7 "doc": "docs"
8 }, 8 },
9 "scripts": { 9 "scripts": {
10 "prepare": "husky install",
10 "package": "node scripts/package.js", 11 "package": "node scripts/package.js",
11 "create": "node scripts/create.js", 12 "create": "node scripts/create.js",
12 "lint": "eslint --quiet --fix recipes", 13 "lint": "eslint --quiet --fix recipes",