You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project uses Husky to automatically check for typos during commits. The check is performed using the `typos` tool and only runs on staged files (files that have been `git add`ed).
145
+
146
+
### Manual Typo Checking
147
+
148
+
To manually check for typos without committing:
149
+
150
+
```bash
151
+
npx typos
152
+
```
153
+
154
+
This command checks all files in the project, regardless of whether they are staged for commit or not.
155
+
156
+
### Disabling Git Hooks
157
+
158
+
To temporarily disable all git hooks (including lint, format, and typo validation) during commit:
159
+
160
+
```bash
161
+
export HUSKY=0
162
+
```
163
+
164
+
You can re-enable hooks by unsetting the variable or starting a new terminal session.
0 commit comments