From 6a246c4a993778d8dd567bb1934e89d0f80a6a43 Mon Sep 17 00:00:00 2001 From: Fontrodona Nicolas <nicolas.fontrodona@ens-lyon.fr> Date: Thu, 12 Nov 2020 17:58:24 +0100 Subject: [PATCH] sonar-project.properties: add sonarQube config file --- sonar-project.properties | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000..38668db --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,15 @@ +# must be unique in a given SonarQube instance +sonar.projectKey=bigwig_visu +# --- optional properties --- +# defaults to project key +sonar.projectName=BigWig visualisation +# defaults to 'not provided' +sonar.projectVersion=0.1 +# Path is relative to the sonar-project.properties file. Defaults to . +sonar.sources=. +# Encoding of the source code. Default is default system encoding +sonar.sourceEncoding=UTF-8 +#Description of the project +sonar.projectDescription=A tools to visualise bigwig coverage. +#----- Default SonarQube server +sonar.host.url=http://localhost:9000 \ No newline at end of file -- GitLab