Merge pull request #843 from Bryan-Roe/chore/codeql-autofix-29139278308 #31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CodeQL configuration for Aria. | ||
|
Check failure on line 1 in .github/workflows/codeql-config.yml
|
||
| # 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" | ||