File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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(
1141142 . Parser automatically converts to tool definitions
1151153 . 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
Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ extend-ignore-re = [
88]
99
1010[files ]
11+ ignore-hidden = false
1112extend-exclude = [
13+ " .git" ,
1214 " .venv" ,
1315 " uv.lock" ,
1416 " CHANGELOG.md" ,
You can’t perform that action at this time.
0 commit comments