Skip to content

Instantly share code, notes, and snippets.

View kurnakovv's full-sized avatar
👴
Dead inside, Babka outside...

kurnakovv

👴
Dead inside, Babka outside...
View GitHub Profile
@kurnakovv
kurnakovv / .editorconfig
Last active June 29, 2026 13:11
Disable all JetBrains ReSharper InspectCode rules in .editorconfig
[*]
##
## JetBrains ReSharper InspectCode
##
# All rules here https://www.jetbrains.com/help/resharper/Reference__Code_Inspections_CSHARP.html
# Method invocation is skipped
resharper_invocation_is_skipped_highlighting = none
@kurnakovv
kurnakovv / .editorconfig
Last active November 15, 2025 05:55
Disable all StyleCop.Analyzers rules in .editorconfig
[*.cs]
##
## StyleCop.Analyzers
##
# All rules here https://github.com/DotNetAnalyzers/StyleCopAnalyzers/tree/master/documentation
# A violation of this rule occurs when a compilation (project) contains one or more files which are parsed with the DocumentationMode set to None. This most frequently occurs when the project is configured to not produce an XML documentation file during the build.
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA0001.md
dotnet_diagnostic.SA0001.severity = none