X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b1eaeaef658ca6c0bf73346654970379dc9e68f8..22ba17ce624d397c87d569fc1d329339d2a7aa83:/sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties index e8694392ef..1bcfe40cb8 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -13,13 +13,18 @@ sonar.sources=src,examples,include,teshsuite # Disable some rules on some files -sonar.issue.ignore.multicriteria=j1,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,f1 +sonar.issue.ignore.multicriteria=j1,j2,jni1,jni2,c1,c2a,c2b,c3,c4a,c4b,c5a,c5b,f1 # The Object.finalize() method should not be overriden # But we need to clean the native memory with JNI sonar.issue.ignore.multicriteria.j1.ruleKey=squid:ObjectFinalizeOverridenCheck sonar.issue.ignore.multicriteria.j1.resourceKey=**/*.java +# Throwable.printStackTrace(...) should not be called +# But we don't have no better mechanism, and our Java apps are not rocket science +sonar.issue.ignore.multicriteria.j2.ruleKey=squid:S1148 +sonar.issue.ignore.multicriteria.j2.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