# Exclude test directories completely from SonarQube analysis
tests/**
**/test_*
**/*_test.py
test_*.py

# Exclude examples and documentation from quality analysis
examples/**
docs/**
site/**
README.md
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md

# Exclude build and cache directories
htmlcov/**
.mypy_cache/**
.ruff_cache/**
.pytest_cache/**
.venv/**
.vscode/**
__pycache__/**
*.pyc
*.pyo
*.pyd

# Exclude configuration files from analysis
pyproject.toml
uv.lock
tox.ini
mkdocs.yml
codecov.yaml
LICENSE
Makefile
.gitignore
.pre-commit-config.yaml
sonar-project.properties

# Exclude plots and coverage files
plots/**
coverage.xml
.coverage

# Exclude Docker files
dockers/**

# Exclude any generated files
**/generated/**
**/_generated/**
