StyleCop.Analyzers: Disable SA1633 & SA1652
I have already consulted the configuration documentation, but couldn't find anything.
I want to disable both of the following rules:
SA1633: The file header is missing or not located at the top of the file.
SA1652: Enable XML documentation output.
My stylecop.json looks like this:
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace"
}
}
}
Any ideas?