sonarqube - Can we ignore a specific S100 warning with SonarLint -


in our c# project using sonarqube/sonarlint.

we have property called dmscode. dms abbreviation use in our organization, valid. yet sonarlint throwing s100 warning.

is there way ignore this code:

public string dmscode { get; set; } 

i tried searching 'sonarlint s100 ignore' , other variations, found nothing.

i able way:

#pragma warning disable s100     public string dmscode { get; set; } #pragma warning restore s100 

not sure if best solution, works here.


Comments

Popular posts from this blog

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -