Skip to content

Commit fb20944

Browse files
authored
chore: typos hidden check (#257)
* chore: typos hidden check * chore: format
1 parent a9bbed8 commit fb20944

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.claude/rules/file-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ async function getProtectedData(token: string): Promise<Data> {
127127

128128
## When to Use Direct HTTP Clients
129129

130-
Only use specialised HTTP clients when:
130+
Only use specialized HTTP clients when:
131131

132132
- You need advanced features not covered by fetch (e.g., interceptors, retries)
133133
- You're integrating with a framework that requires it

.claude/rules/typescript-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ it('should save file to disk', async () => {
116116

117117
**Reference:** See `node_modules/fs-fixture/README.md` for full API and advanced usage
118118

119-
## Test Organisation
119+
## Test Organization
120120

121121
- Use snapshot testing for generated outputs
122122
- Comprehensive unit tests for parsing logic
@@ -127,6 +127,6 @@ it('should save file to disk', async () => {
127127

128128
- Run tests frequently during development
129129
- Maintain >90% code coverage for core modules
130-
- Use descriptive test names that explain the behaviour being tested
130+
- Use descriptive test names that explain the behavior being tested
131131
- Keep tests isolated and independent
132132
- Clean up MSW overrides automatically via global hooks

typos.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ extend-ignore-re = [
88
]
99

1010
[files]
11+
ignore-hidden = false
1112
extend-exclude = [
13+
".git",
1214
"node_modules",
13-
"package.json",
1415
"pnpm-lock.yaml",
1516
"pnpm-workspace.yaml",
1617
"CHANGELOG.md",

0 commit comments

Comments
 (0)