-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopilot.json
More file actions
68 lines (61 loc) · 1.49 KB
/
copilot.json
File metadata and controls
68 lines (61 loc) · 1.49 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"style":
{
"lineEndings": "CRLF",
"indentation": "spaces",
"indentSize": 4,
"useFileScopedNamespaces": true,
"preferExpressionBodiedMembers": true,
"useVar": "whenObvious",
"maxLineLength": 100,
"blankLineAfterClosingBrace": true,
"noLineWrapping": true
},
"csharp":
{
"nullable": "enable",
"languageVersion": "latest",
"preferAsyncSuffix": true,
"generateXmlDocComments": true,
"xmlCommentsLanguage": "hu",
"xmlDocDecorators":
{
"enabled": true,
"width": 98,
"widthMode": "fullLine",
"character": "=",
"prefix": "//",
"insertSpaceAfterPrefix": false,
"dynamicIndent": true
},
"suppressExplanatoryComments": true
},
"comments":
{
"avoidRedundantComments": true,
"avoidObviousComments": true,
"avoidMetaComments": true
},
"fileHeader":
{
"enabled": true,
"width": 98,
"widthMode": "fullLine",
"character": "=",
"prefix": "//",
"insertSpaceAfterPrefix": false,
"dynamicIndent": false,
"content":
[
"{summary}",
"",
"{date:yyyy.MM.dd.} XY"
]
},
"tests":
{
"framework": "xunit",
"useFluentAssertions": true,
"namingConvention": "MethodName_Should_ExpectedBehavior"
}
}