-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
48 lines (39 loc) · 1.43 KB
/
.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
root = true
[*]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 4
file_header_template = \nBassBoom Copyright (C) 2023-2025 Aptivi\n\nThis file is part of BassBoom\n\nBassBoom is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nBassBoom is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY, without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see <https://www.gnu.org/licenses/>.\n
# IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = warning
dotnet_diagnostic.CA1822.severity = none
[*.md]
charset = utf-8
[*.sh]
end_of_line = lf
[*.resx]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 2
[*.csproj]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 2
[*.xml]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 2
[*.json]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 4
[*.yml]
end_of_line = crlf
insert_final_newline = true
indent_style = space
indent_size = 2