-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylecop.json
18 lines (18 loc) · 1.24 KB
/
stylecop.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace"
},
"layoutRules": {
"newlineAtEndOfFile": "require"
},
"documentationRules": {
"copyrightText": "Copyright (c) 2022 Zhang Shuai<zhangshuai.ustc@gmail.com>.\nAll rights reserved.\n\nThis file is part of OneDotNet.\n\nOneDotNet is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your option)\nany later version.\n\nOneDotNet is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE. See the GNU General Public License for more\ndetails.\n\nYou should have received a copy of the GNU General Public License along with\nOneDotNet. If not, see <https://www.gnu.org/licenses/>.",
"documentExposedElements": false,
"documentInterfaces": false,
"documentInternalElements": false,
"xmlHeader": false
}
}
}