Skip to content

Commit b102133

Browse files
authored
chore: format typo (#59)
* chore: format typo * chore: format cladue rule * fix(typos): enable hidden directory scanning - Add ignore-hidden = false in typos.toml config - Exclude .git directory from typos scanning - This ensures .claude/ rules are checked for typos
1 parent 14f7eed commit b102133

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.claude/rules/development-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ just test-examples # Run example tests
4848
- Use `.yaml` extension instead of `.yml` for YAML files
4949
- Keep file names concise but meaningful
5050

51-
## Import Organisation
51+
## Import Organization
5252

5353
- Standard library imports first
5454
- Third-party imports second

.claude/rules/no-relative-imports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Standards for using absolute imports instead of relative imports in Python files
1212

1313
- Always use absolute imports starting with the full package name (`stackone_ai`)
1414
- Never use relative imports (`.` or `..`)
15-
- Keep imports organised and grouped
15+
- Keep imports organized and grouped
1616

1717
## Examples
1818

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
1818
| **no-relative-imports** | `**/*.py` | Enforce absolute imports in Python files |
1919
| **package-installation** | `**/pyproject.toml` | UV package management standards |
2020
| **uv-scripts** | `scripts/**/*.py` | Utility script standards with UV |
21-
| **examples-standards** | `examples/**/*` | Example requirements and organisation |
21+
| **examples-standards** | `examples/**/*` | Example requirements and organization |
2222

2323
## Project Overview
2424

@@ -114,7 +114,7 @@ toolset = StackOneToolSet(
114114
2. Parser automatically converts to tool definitions
115115
3. Test with `make test-tools`
116116

117-
### Modifying Tool Behaviour
117+
### Modifying Tool Behavior
118118

119119
- Core execution logic in `StackOneTool.execute()` method
120120
- HTTP configuration via `ExecuteConfig` class

typos.toml

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

1010
[files]
11+
ignore-hidden = false
1112
extend-exclude = [
13+
".git",
1214
".venv",
1315
"uv.lock",
1416
"CHANGELOG.md",

0 commit comments

Comments
 (0)