-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonar-project.properties
More file actions
36 lines (28 loc) · 1.42 KB
/
sonar-project.properties
File metadata and controls
36 lines (28 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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