Skip to content

Instantly share code, notes, and snippets.

View kurnakovv's full-sized avatar
🖥️
just a tech...

kurnakovv

🖥️
just a tech...
View GitHub Profile
@kurnakovv
kurnakovv / .editorconfig
Last active July 27, 2025 11:52
Disable all JetBrains ReSharper InspectCode rules in .editorconfig
[*.cs]
##
## 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 June 7, 2025 12:15
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