Bypass SonarQube naming convention rule for Application_ methods in Global.asax -


is there way bypass rule

"rename method match regular expression: [a-z][a-za-z0-9]++" 

for global.asax.cs, for application_ methods/events? don't want minimize amount of files skipped completely.

public class mvcapplication : system.web.httpapplication {     protected void application_start()     { 

you can define narrow exclusion pattern rule on exact file, please follow instruction in sonarqube's manual.


Popular posts from this blog

javascript - Js, document.getElementById("ID").innerHTML, error -

jquery - jqGrid update specific column data with out refreshing the entire column? -

objective c - Is there a way in OCMockito to make stubs fail when an unknown method is called? -