More CICD fixes again again again again again again again again again again again
All checks were successful
CICD Start / Sanity and Base Decision (pull_request) Successful in 1m24s

Signed-off-by: copilotcoder <copilotcoder@darkhelm.org>
This commit is contained in:
copilotcoder
2026-06-05 14:12:09 -04:00
parent 2595a15bd0
commit eb1ebf617d
5 changed files with 5 additions and 11 deletions

View File

@@ -1,6 +0,0 @@
[darglint]
docstring_style = google
strictness = short
ignore_regex = ^_
# Ignore type-related errors since we use type hints in function signatures
ignore = DAR101,DAR102,DAR103,DAR201,DAR202,DAR203,DAR301,DAR302,DAR401,DAR402

View File

@@ -76,8 +76,8 @@ jobs:
hook: ruff-format
- name: Pyright Type Check
hook: pyright
- name: Darglint Docstring Check
hook: darglint
- name: Pydoclint Docstring Check
hook: pydoclint
- name: No Docstring Types Check
hook: no-docstring-types
- name: ESLint Check

View File

@@ -219,7 +219,7 @@ RUN cd /workspace/backend && \
echo "=== Backend Tools Verification ===" && \
uv run ruff --version && \
uv run pyright --version && \
uv run darglint --version && \
uv run pydoclint --version && \
uv run pytest --version && \
uv run yamllint --version && \
uv run toml-sort --version && \

View File

@@ -24,7 +24,7 @@ This project uses comprehensive linting and formatting:
**Backend (Python):**
- `ruff` - Fast Python linter and formatter
- `pyright` - Type checking
- `darglint` - Docstring linting (Google style)
- `pydoclint` - Docstring linting (Google style)
**Frontend (TypeScript/Vue):**
- `eslint` - Linting with Vue and TypeScript support

View File

@@ -254,7 +254,7 @@ uv run xdoctest src/
#### Documentation
```bash
# Check docstring style
uv run darglint src/
uv run pydoclint --config=pyproject.toml src/
```
### Frontend Tools (TypeScript/Vue)