diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100644 index 0000000..27d3d51 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,3 @@ +echo Formatting... +npm run format +echo Successfully formatted. \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 6741b96..46f0519 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,6 +16,7 @@ "devDependencies": { "eslint": "^8", "eslint-config-next": "14.1.1", + "husky": "^9.0.11", "standard": "^17.1.0" } }, @@ -2298,6 +2299,21 @@ "node": ">= 0.4" } }, + "node_modules/husky": { + "version": "9.0.11", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", + "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", + "dev": true, + "bin": { + "husky": "bin.mjs" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, "node_modules/ignore": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", diff --git a/package.json b/package.json index 0cece3f..d790ce0 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "build": "next build", "start": "next start", "link": "npx standard", - "format": "npx standard --fix" + "format": "npx standard --fix", + "prepare": "husky" }, "dependencies": { "next": "14.1.1", @@ -18,6 +19,7 @@ "devDependencies": { "eslint": "^8", "eslint-config-next": "14.1.1", + "husky": "^9.0.11", "standard": "^17.1.0" } }