Files
drop/sonar-project.properties
John Smith 81d8c90be0 style: fix trailing whitespace and missing final newlines
EditorConfig CI was reporting 22 files with trailing-ws and no-final-newline
violations. Fixed via sed batch:
- Strip trailing whitespace from end of each line
- Append final newline if file doesn't end with one

Down from 28 errors to 6. Remaining 6 are indent/style issues (B2).
2026-07-24 13:53:37 -04:00

23 lines
727 B
Properties

# SonarCloud project — Heretek-Drop / drop (main monolith)
sonar.projectKey=Heretek-Drop_drop
sonar.projectName=Heretek-Drop / drop
sonar.projectVersion=1.0
# Paths
sonar.sources=.
sonar.exclusions=**/node_modules/**,**/dist/**,**/build/**,**/.next/**,**/target/**,**/coverage/**,**/__pycache__/**,**/.venv/**,**/*.test.ts,**/*.test.js,**/*.spec.ts,**/*.spec.js,**/*.d.ts,**/migrations/**
# JavaScript / TypeScript / Vue
sonar.javascript.file.suffixes=.js,.jsx,.cjs,.mjs,.vue
sonar.typescript.file.suffixes=.ts,.tsx
sonar.javascript.lcov.reportPaths=coverage/lcov.info
# Rust native addons
sonar.rust.file.suffixes=.rs
# Python utility scripts
sonar.python.file.suffixes=.py
# Source encoding
sonar.sourceEncoding=UTF-8