forked from DataDog/dd-sdk-unity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
32 lines (30 loc) · 1.03 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
#
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2023-Present Datadog, Inc.
#
[*]
insert_final_newline = true
trim_trailing_whitespace = true
[*.cs]
indent_style = space
indent_size = 4
csharp_space_before_new_parentheses = true
# Prefix local calls with this
dotnet_diagnostic.SA1101.severity = none
# Field should not begin with an underscore
dotnet_diagnostic.SA1309.severity = none
# Parameter must not span multiple lines
dotnet_diagnostic.SA1118.severity = none
# File name should match first type
dotnet_diagnostic.SA1649.severity = none
# File may only contain a single type
dotnet_diagnostic.SA1402.severity = none
# Do not user #region
dotnet_diagnostic.SA1124.severity = none
# Space after keywords (dotnet format) takes care
# of this for us, and it conflicts with `new()` spacing
dotnet_diagnostic.SA1000.severity = none
[*.json]
indent_style = space
indent_size = 2