Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sonar: disable a weird rule
[simgrid.git] / sonar-project.properties
index 3f7ea99..ec1e0f2 100644 (file)
@@ -13,7 +13,7 @@ sonar.sources=src,examples,include,teshsuite
 
 
 # Disable some rules on some files
-sonar.issue.ignore.multicriteria=j1,j2,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c7,c8,f1
+sonar.issue.ignore.multicriteria=j1,j2,j3,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,c6a,c6b,c7,c8,c9,f1
 
 # The Object.finalize() method should not be overriden
 # But we need to clean the native memory with JNI
@@ -25,6 +25,11 @@ sonar.issue.ignore.multicriteria.j1.resourceKey=**/*.java
 sonar.issue.ignore.multicriteria.j2.ruleKey=squid:S1148
 sonar.issue.ignore.multicriteria.j2.resourceKey=**/*.java
 
+# Using command line arguments is security-sensitive
+# But the authors of the applications using our library will be their only users, so there is no security concern
+sonar.issue.ignore.multicriteria.j3.ruleKey=squid:S4823
+sonar.issue.ignore.multicriteria.j3.resourceKey=**/*.java
+
 # "reinterpret_cast" should not be used
 # But this is exactly intended to store a pointer into a long -- what we do here
 sonar.issue.ignore.multicriteria.jni1.ruleKey=cpp:S3630
@@ -85,6 +90,11 @@ sonar.issue.ignore.multicriteria.c7.resourceKey=**/*
 sonar.issue.ignore.multicriteria.c8.ruleKey=cpp:S1133
 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=**/*
+
 # "reinterpret_cast" should not be used
 # But we need this to interface C and Fortran
 sonar.issue.ignore.multicriteria.f1.ruleKey=cpp:S3630
@@ -116,7 +126,8 @@ sonar.cfamily.gcov.reportsPath=Testing/CoverageInfo
 #   - foreign test suites
 #   - platform files (I fail to get sonar ignore *.xml files)
 #   - Java code, examples and tests
-sonar.coverage.exclusions=teshsuite/smpi/isp/**,teshsuite/smpi/mpich3-test/**,examples/platforms/**,src/bindings/java/**,examples/java/**,teshsuite/java/**
+#   - Python files
+sonar.coverage.exclusions=teshsuite/smpi/isp/**,teshsuite/smpi/mpich3-test/**,examples/platforms/**,**/*.xml,src/bindings/java/**,examples/java/**,teshsuite/java/**,**/*.py
 
 # Encoding of the source files
 sonar.sourceEncoding=UTF-8