Skip to content

Merge pull request #843 from Bryan-Roe/chore/codeql-autofix-29139278308 #31

Merge pull request #843 from Bryan-Roe/chore/codeql-autofix-29139278308

Merge pull request #843 from Bryan-Roe/chore/codeql-autofix-29139278308 #31

Workflow file for this run

# CodeQL configuration for Aria.

Check failure on line 1 in .github/workflows/codeql-config.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/codeql-config.yml

Invalid workflow file

(Line: 9, Col: 1): Unexpected value 'disable-default-queries', (Line: 11, Col: 1): Unexpected value 'queries', (Line: 16, Col: 1): Unexpected value 'paths-ignore', (Line: 9, Col: 1): Required property is missing: jobs
# Docs:
# https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning#using-a-custom-configuration-file
# NOTE:
# - 'language' is configured in the CodeQL workflow matrix, not here.
# - Python version is configured in the workflow via actions/setup-python.
disable-default-queries: false
queries:
- uses: security-extended
- uses: security-and-quality
# Keep scan coverage broad; only exclude non-source, vendored, or generated content.
paths-ignore:
# Third-party dependencies
- "**/node_modules/**"
- "**/vendor/**"
# Python virtual environments
- "**/.venv/**"
- "**/venv/**"
- "**/env/**"
# Python caches and packaging artifacts
- "**/__pycache__/**"
- "**/*.pyc"
- "**/*.pyo"
- "**/*.whl"
- "**/*.egg-info/**"
- "**/.pytest_cache/**"
- "**/.mypy_cache/**"
- "**/.ruff_cache/**"
# Frontend / build artifacts
- "**/dist/**"
- "**/build/**"
- "**/coverage/**"
# Generated and fixture content
- "**/test_data/**"
- "**/fixtures/**"
- "**/generated/**"
# Documentation and repository metadata
- ".git/**"
- "docs/**"
- "**/*.md"
- "**/*.rst"