-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
35 lines (27 loc) · 1.02 KB
/
.editorconfig
File metadata and controls
35 lines (27 loc) · 1.02 KB
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
30
31
32
33
34
35
root = true
# All files
[*]
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
# Solution and project files
[*.{sln,csproj,props}]
indent_style = space
indent_size = 2
# C# files
[*.cs]
indent_style = space
indent_size = 4
# IDE0003: Remove qualification
dotnet_diagnostic.IDE0003.severity = none
# Naming Conventions - Enforce FluNET (all caps NET)
# Namespaces must start with FluNET
dotnet_naming_rule.namespace_must_start_with_flunet.severity = error
dotnet_naming_rule.namespace_must_start_with_flunet.symbols = namespace_symbols
dotnet_naming_rule.namespace_must_start_with_flunet.style = flunet_namespace_style
dotnet_naming_symbols.namespace_symbols.applicable_kinds = namespace
dotnet_naming_symbols.namespace_symbols.applicable_accessibilities = *
dotnet_naming_style.flunet_namespace_style.required_prefix = FluNET
dotnet_naming_style.flunet_namespace_style.capitalization = pascal_case
# Assembly name must contain FluNET (checked at build)
# Project name must contain FluNET (checked at build)