Sonar Lint rules to disable: - Make this IP "127.0.0.1" address configurable. - Control flow statements "if", "for", "while", "switch" and "try" should not be nested too deeply (PASSER DE 3 à 4) - "switch case" clauses should not have too many lines Disabled: SonarQube > Quality profiles > Java/Sonar way > X active rules > Search > Deactivate - Multiple variables should not be declared on the same line. - Method parameters, caught exceptions and foreach variables should not be reassigned Changed; - Methods should not have too many parameters. From 7 to 9. - Lambdas and anonymous classes should not have too many lines. From 20 to 24. - Control flow statements "if", "for", "while", "switch" and "try" should not be nested too deeply. From 3 to 5. - "switch case" clauses should not have too many lines. From 5 to 6.