Skip to content

Commit ec9a74d

Browse files
docs: clarify that both ruff check and format are required for CI
1 parent 8c7e6a0 commit ec9a74d

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/copilot-instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ uv run pytest tests/integration
5858
# Run only E2E tests (requires DATABASE_URL)
5959
uv run pytest tests/e2e
6060

61-
# Check code formatting and linting
61+
# Linting (required for CI)
6262
uv run ruff check .
6363

64-
# Auto-fix issues
64+
# Auto-fix linting issues
6565
uv run ruff check . --fix
6666

67-
# Format code
67+
# Formatting (required for CI)
6868
uv run ruff format .
6969
```
7070

CLAUDE.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,14 +163,16 @@ uv run pytest tests/unit/api/test_routers.py::test_get_specs
163163

164164
### Code Quality
165165

166+
**Both linting and formatting must pass for CI.**
167+
166168
```bash
167-
# Check code formatting and linting
169+
# Linting (required for CI)
168170
uv run ruff check .
169171

170-
# Auto-fix issues
172+
# Auto-fix linting issues
171173
uv run ruff check . --fix
172174

173-
# Format code
175+
# Formatting (required for CI)
174176
uv run ruff format .
175177
```
176178

0 commit comments

Comments
 (0)