-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
29 lines (26 loc) · 850 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Top-most EditorConfig file
root = true
# Normally these kind of settings aren't important. However,
# Because we use files for validating tests we enforce tabs and line-endings to make the tests run everywhere.
[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
[markdown]
trim_trailing_whitespace: false
insert_final_newline = true
[*.md]
trim_trailing_whitespace: false
insert_final_newline = true
[*.{yml,yaml}]
indent_style = space
indent_size = 2
[*.cs]
csharp_style_namespace_declarations = file_scoped
dotnet_diagnostic.IDE0161.severity = error
dotnet_sort_system_directives_first = false
dotnet_separate_import_directive_groups = true
# Default severity for analyzer diagnostics with category 'Roslynator'
dotnet_analyzer_diagnostic.category-Roslynator.severity = silent