-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathstylecop.json
36 lines (36 loc) · 1.8 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
"settings": {
"documentationRules": {
"copyrightText": "License :\n\nSoundTouch audio processing library\nCopyright (c) {originalAuthor}\nC# port Copyright (c) {author}\n\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library 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 GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA",
"headerDecoration": "-----------------------------------------------------------------------",
"xmlHeader": false,
"documentExposedElements": false,
"variables": {
"licenseName": "LGPL v2.1",
"licenseFile": "LICENSE",
"author": "Olaf Woudenberg",
"originalAuthor": "Olli Parviainen"
}
},
"layoutRules": {
"newlineAtEndOfFile": "require"
},
"indentation": {
"indentationSize": 4,
"useTabs": false
},
"namingRules": {},
"orderingRules": {
"systemUsingDirectivesFirst": false,
"usingDirectivesPlacement": "insideNamespace",
"elementOrder": [
"kind",
"constant",
"accessibility",
"static",
"readonly"
]
}
}
}