xbmc/sonar-project.properties

59 lines
2.3 KiB
Properties
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## -----------------------------------------------------------------------------
## Project Identification
## -----------------------------------------------------------------------------
# sonar.projectKey: Unique identifier for this project in SonarCloud.
# Format: <organization>_<repository>
# e.g. teamkodi_xbmc
sonar.projectKey=xbmc_xbmc
# sonar.organization: Your SonarCloud organization key.
# Find it on https://sonarcloud.io/organizations
sonar.organization=teamkodi
## -----------------------------------------------------------------------------
## Metadata (display purposes only)
## -----------------------------------------------------------------------------
# sonar.projectName: Display name in SonarCloud UI.
# Default: repository name
# You can override if you want a friendlier name, e.g. "Kodi Media Center"
# sonar.projectName=xbmc
# sonar.projectVersion: Project version shown in UI.
# e.g. 1.0, 22.0-alpha1
# sonar.projectVersion=1.0
## -----------------------------------------------------------------------------
## Source Directories
## -----------------------------------------------------------------------------
# sonar.sources: Comma-separated list of directories to analyze.
# Default: current directory (.)
# Example: src,lib,components
# sonar.sources=.
## -----------------------------------------------------------------------------
## Exclusions
## -----------------------------------------------------------------------------
# sonar.exclusions: File patterns to exclude from analysis (supports ** and wildcards).
# Common use: thirdparty code, build artifacts, heavy external tools.
# We exclude embedded libs and Java files (which cannot be analyzed without special setup)
sonar.exclusions=lib/**,tools/depends/**,**/*.java
## -----------------------------------------------------------------------------
## Language Settings
## -----------------------------------------------------------------------------
# sonar.python.version: Supported Python versions for analysis.
# Commaseparated list.
# e.g. 3.7,3.8,…,3.13
sonar.python.version=3.7,3.8,3.9,3.10,3.11,3.12,3.13
# sonar.sourceEncoding: Encoding of source files.
# Default: system encoding (usually UTF8).
# e.g. UTF-8, ISO-8859-1
# sonar.sourceEncoding=UTF-8