# typo-detection-hook **Repository Path**: HelloJay/typo-detection-hook ## Basic Information - **Project Name**: typo-detection-hook - **Description**: a precommit hook to detect typos - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### example - first install dependency ``` yarn add husky lint-staged type-detection -D or npm install husky lint-staged type-detection -D ``` - then in your package.json file: ``` "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "typo" ] } ```