Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
WIP stop using const char* in C++ layers
[simgrid.git] / sonar-project.properties
1 # This file is used to scan the project for issues automatically 
2 # Browse the result here: https://nemo.sonarqube.org/overview?id=simgrid
3
4 sonar.projectKey=simgrid
5 sonar.projectName=SimGrid
6 sonar.projectVersion=3.15
7
8 sonar.links.homepage=http://simgrid.org
9 sonar.links.issue=https://github.com/simgrid/simgrid/issues
10 sonar.links.scm=https://github.com/simgrid/simgrid.git
11 # Comma-separated paths to directories with sources (required)
12 sonar.sources=src,examples,include,teshsuite
13
14
15 # Disable some rules on some files
16 sonar.issue.ignore.multicriteria=j1,c1,c2,c3,c4
17
18 # The Object.finalize() method should not be overriden
19 # But we need to clean the native memory with JNI
20 sonar.issue.ignore.multicriteria.j1.ruleKey=squid:ObjectFinalizeOverridenCheck
21 sonar.issue.ignore.multicriteria.j1.resourceKey=**/*.java
22
23 # "reinterpret_cast" should not be used
24 # But this is exactly intended to store a pointer into a long -- what we do here
25 sonar.issue.ignore.multicriteria.c1.ruleKey=cpp:S3630
26 sonar.issue.ignore.multicriteria.c1.resourceKey=src/bindings/java/*.cpp
27
28 # Pointers should not be cast to integral types
29 # But we need that for jMSG
30 sonar.issue.ignore.multicriteria.c2.ruleKey=cpp:S1767
31 sonar.issue.ignore.multicriteria.c2.resourceKey=**/*.cpp
32
33 # Preprocessor operators "#" and "##" should not be used
34 # This poses portability issues, but we check our usage on a large panel of architectures on purpose
35 sonar.issue.ignore.multicriteria.c3.ruleKey=cpp:PPStringifyAndPastingUsage
36 sonar.issue.ignore.multicriteria.c3.resourceKey=**/*.cpp
37
38 # Macro names should comply with a naming convention
39 # But the macros in this file are named after the MPI standard
40 sonar.issue.ignore.multicriteria.c4.ruleKey=c:PPMacroName
41 sonar.issue.ignore.multicriteria.c4.resourceKey=include/smpi/smpi_extended_traces.h
42
43 # Exclude some files from the analysis:
44 #  - our unit tests 
45 #  - the tests that we borrowed elsewhere (MPICH and ISP)
46 #  - Flex-generated files
47 #  - Collectives that we borrowed elsewhere (mpich, openMPI and other implems)
48 #  - the NAS, that are included in our examples
49 sonar.exclusions=src/*_unit.c*,teshsuite/smpi/mpich3-test/**,teshsuite/smpi/isp/**,**/*_dtd.c,**/*_dtd.h,**/*yy.c,src/smpi/colls/*,examples/smpi/NAS/*
50
51 # Ignore some files based on regex on their content (not working)
52 #sonar.issue.ignore.allfile=flexGenerated,flexMLGenerated
53 #  - The one that are generated from Flex
54 #sonar.issue.ignore.allfile.flexGenerated.fileRegexp="generated by flex"
55 #  - The one that are generated from FlexML (the header files are directly generated, not going though Flex)
56 sonar.issue.ignore.allfile.flexMLGenerated.fileRegexp="generated with the FleXML XML processor generator"
57
58 # Ignore the files that SMPI scavenged here and there (not working)
59 #sonar.issue.ignore.allfile=mpiColls
60 #sonar.issue.ignore.allfile.flexGenerated.mpiColls="Ahmad Faraj"
61 #sonar.issue.ignore.allfile=mpivapich
62 #sonar.issue.ignore.allfile.flexGenerated.mpivapich="This file is part of the MVAPICH2 software package"
63 #sonar.issue.ignore.allfile=mpiOmpi
64 #sonar.issue.ignore.allfile.flexGenerated.mpiOmpi="University of Tennessee"
65
66 # The build-wrapper output dir
67 sonar.cfamily.build-wrapper-output=bw-outputs
68
69 # Encoding of the source files
70 sonar.sourceEncoding=UTF-8
71
72 sonar.java.source=7
73
74 # Talk to me (travis don't like it, it's too much)
75 # sonar.verbose=true