charls/sonar-project.properties
Victor Derks bd605773cd
Add support to fuzz with LibFuzzer (#294)
Both MSVC and clang have support for fuzzing with LibFuzzer. Add a console app that can be used to fuzz with LibFuzzer.
2023-12-27 19:40:23 +01:00

23 lines
817 B
Properties

# Copyright (c) Team CharLS.
# SPDX-License-Identifier: BSD-3-Clause
sonar.projectKey = team-charls_charls
sonar.organization = team-charls
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName = CharLS
sonar.projectVersion = 3.0.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# sonar.sources=./src
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding = UTF-8
# Define the source code to scan (only scan files that are part of the CharLS library)
sonar.sources = src/,include/
sonar.tests = test/,unittest/,benchmark/,fuzzing/
# Duplication exclusions
# SonarQube reports often false warnings for template classes., exclude these files.
sonar.cpd.exclusions = src/scan_decoder_impl.h,src/scan_encoder_impl.h