-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstylecop.json
23 lines (23 loc) · 922 Bytes
/
stylecop.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"layoutRules": {
"newlineAtEndOfFile": "require"
},
"namingRules": {
"allowCommonHungarianPrefixes": true,
"allowedHungarianPrefixes": [ "db", "at", "or", "up", "it", "un", "x", "y", "id", "ip", "bg" ]
},
"documentationRules": {
"companyName": "RestaurantMenuProject",
"copyrightText": "Copyright (c) {companyName}. All Rights Reserved.",
"documentInterfaces": false,
"documentInternalElements": false
},
"orderingRules": {
"usingDirectivesPlacement": "insideNamespace",
"systemUsingDirectivesFirst": true,
"blankLinesBetweenUsingGroups": "require"
}
}
}