StyleCop.Analyzers: Disable SA1633 & SA1652 -


i have consulted configuration documentation, couldn't find anything.

i want disable both of following rules:

sa1633: file header missing or not located @ top of file. sa1652: enable xml documentation output. 

my stylecop.json looks this:

{   "$schema": "https://raw.githubusercontent.com/dotnetanalyzers/stylecopanalyzers/master/stylecop.analyzers/stylecop.analyzers/settings/stylecop.schema.json",   "settings": {     "orderingrules": {       "usingdirectivesplacement": "outsidenamespace"     }   } } 

any ideas?

enabling , disabling rules done via ruleset file, not configuration .json file. details regarding use of ruleset files, see https://msdn.microsoft.com/en-us/library/dd264996.aspx.


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

sql server - SQL Query returns one result, does not return 0 or NULL result -