Skip to content

Commit

Permalink
Enforced 4 spaces rule
Browse files Browse the repository at this point in the history
  • Loading branch information
AptiviCEO committed Jul 27, 2023
1 parent 6969c3c commit 7a53914
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[*.cs]
root = true

# IDE0057: Use range operator
csharp_style_prefer_range_operator = false
[*]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 4

# IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = warning
dotnet_diagnostic.CA1822.severity = none

[*.md]
charset = utf-8

[*.sh]
end_of_line = lf

0 comments on commit 7a53914

Please sign in to comment.