Skip to content

Commit

Permalink
Add .editorconfig to ignore missing XML comments warning
Browse files Browse the repository at this point in the history
This commit adds a new .editorconfig file which specifies rule adjustments for .NET. Specifically,
  • Loading branch information
rodion-m committed Nov 25, 2023
1 parent 8f9f747 commit 86fd5b7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# EditorConfig is awesome: https://EditorConfig.org

# Top-most EditorConfig file
root = true

# C# files
[*.cs]
# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = none

0 comments on commit 86fd5b7

Please sign in to comment.