mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-07-25 16:55:48 -04:00
81d8c90be0
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).
23 lines
727 B
Properties
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
|