Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,36 @@
# CosmoTech template for SonarQube configuration v0.7.0
# -----------------------------------------------------

# This file is used to configure the SonarQube scanner for a project (source:
# https://github.com/Cosmo-Tech/sonarqube-scanner/blob/main/docs/sonar-project.properties.template)


# Default project identification properties
# -----------------------------------------
# These properties are hardcoded in the sonarqube-scanner as they are shared
# across all CosmoTech projects. Uncomment them only if you want to override
# and you know what you are doing.

# sonar.projectKey=your-project-key # Unique identifier for your project
# sonar.projectName=Your Project Name # Display name for your project
# sonar.projectVersion=1.0.0 # Version of your project

# Source code and testing configuration
# -----------------------------------
# A file should either be in source or test directory, not both. By default
# everything is source
# Define source directories to analyze:
sonar.sources=cosmotech
# Define test directories:
sonar.tests=tests

# Completely ignore files with the following patterns:
# sonar.exclusions=do_not_look_inside/**

# Code duplication detection settings
# sonar.cpd.exclusions=embarassing_code/**,copy_pasted_scripts/**

# Language-specific configurations
# ------------------------------
# Python version(s) used in the project (comma-separated list of supported versions)
sonar.python.version=3.11