X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1e74025225ff652603a0ad05f88e451f58cb6157..fa83891035a7985986f404284b5b586545301996:/sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties index 22a123e0bc..8f3db2582f 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -13,7 +13,7 @@ sonar.sources=src,examples,include,teshsuite # Disable some rules on some files -sonar.issue.ignore.multicriteria=j1,j2,j3,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c7,c8,c9,f1 +sonar.issue.ignore.multicriteria=j1,j2,j3,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c8,c9,f1 # The Object.finalize() method should not be overriden # But we need to clean the native memory with JNI @@ -48,10 +48,11 @@ sonar.issue.ignore.multicriteria.c1.resourceKey=**/*.cpp # Preprocessor operators "#" and "##" should not be used # This poses portability issues, but we test on a large panel of architectures on purpose -sonar.issue.ignore.multicriteria.c2a.ruleKey=cpp:PPStringifyAndPastingUsage -sonar.issue.ignore.multicriteria.c2a.resourceKey=**/*.cpp +# Until after Augustin goes to rehab, we cannot remove them all +sonar.issue.ignore.multicriteria.c2a.ruleKey=c:PPStringifyAndPastingUsage +sonar.issue.ignore.multicriteria.c2a.resourceKey=**/* sonar.issue.ignore.multicriteria.c2b.ruleKey=cpp:PPStringifyAndPastingUsage -sonar.issue.ignore.multicriteria.c2b.resourceKey=**/*.hpp +sonar.issue.ignore.multicriteria.c2b.resourceKey=**/* # Macro names should comply with a naming convention # But the macros in this file are named after the MPI standard @@ -80,10 +81,7 @@ sonar.issue.ignore.multicriteria.c6a.resourceKey=src/**/*.cpp sonar.issue.ignore.multicriteria.c6b.ruleKey=cpp:S3584 sonar.issue.ignore.multicriteria.c6b.resourceKey=teshsuite/**/*.cpp -# Preprocessor operators "#" and "##" should not be used -# Until after Augustin goes to rehab, we cannot remove them all -sonar.issue.ignore.multicriteria.c7.ruleKey=c:PPStringifyAndPastingUsage -sonar.issue.ignore.multicriteria.c7.resourceKey=**/* +# UNUSED: c7 # Deprecated code should be removed # We do have a process to remove deprecated code @@ -92,8 +90,8 @@ sonar.issue.ignore.multicriteria.c8.resourceKey=**/* # Lambda return types should be implicit # I don't see the point in general, plus we mostly use them when forced, to disambiguate -sonar.issue.ignore.multicriteria.c8.ruleKey=cpp:S3574 -sonar.issue.ignore.multicriteria.c8.resourceKey=**/* +sonar.issue.ignore.multicriteria.c9.ruleKey=cpp:S3574 +sonar.issue.ignore.multicriteria.c9.resourceKey=**/* # "reinterpret_cast" should not be used # But we need this to interface C and Fortran