-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorconfig
48 lines (38 loc) · 986 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Safefleet's Base EditorConfig.
root=true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
max_line_length = 150
[*.md]
max_line_length = off
trim_trailing_whitespace = false
[*.{sln,sln.DotSettings}]
indent_style = tab
insert_final_newline = unset
max_line_length = unset
[**/.idea/**]
max_line_length = unset
insert_final_newline = unset
end_of_line = unset
[**/{*.slconfig,SonarLint.xml,*.ruleset}]
end_of_line = unset
insert_final_newline = unset
max_line_length = unset
indent_style = unset
indent_size = unset
trim_trailing_whitespace = unset
max_line_length = unset
[*.sh]
max_line_length = off
[*.cs]
# S3925: "ISerializable" should be implemented correctly
dotnet_diagnostic.S3925.severity = none
# S4027: Exceptions should provide standard constructors
dotnet_diagnostic.S4027.severity = none
# S4041: Type names should not match namespaces
dotnet_diagnostic.S4041.severity = none