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

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -