FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
scribejava/checkstyle.xml at master · dunkcoder/scribejava · GitHub
dunkcoder
/
scribejava
Public
forked from
scribejava/scribejava
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
scribejava
/
checkstyle.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
124 lines (123 loc) · 5.24 KB
Breadcrumbs
scribejava
/
checkstyle.xml
Copy path
File metadata and controls
124 lines (123 loc) · 5.24 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<!
DOCTYPE
module
PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<
module
name
=
"
Checker
"
>
<
property
name
=
"
charset
"
value
=
"
UTF-8
"
/>
<
module
name
=
"
TreeWalker
"
>
<
module
name
=
"
AnnotationLocation
"
>
<
property
name
=
"
allowSamelineSingleParameterlessAnnotation
"
value
=
"
false
"
/>
</
module
>
<
module
name
=
"
AnnotationUseStyle
"
/>
<
module
name
=
"
MissingDeprecated
"
/>
<
module
name
=
"
MissingOverride
"
/>
<
module
name
=
"
AvoidNestedBlocks
"
>
<
property
name
=
"
allowInSwitchCase
"
value
=
"
true
"
/>
</
module
>
<
module
name
=
"
LeftCurly
"
>
<
property
name
=
"
ignoreEnums
"
value
=
"
false
"
/>
</
module
>
<
module
name
=
"
NeedBraces
"
/>
<
module
name
=
"
RightCurly
"
/>
<
module
name
=
"
HideUtilityClassConstructor
"
/>
<
module
name
=
"
OneTopLevelClass
"
/>
<
module
name
=
"
VisibilityModifier
"
/>
<
module
name
=
"
CovariantEquals
"
/>
<
module
name
=
"
DeclarationOrder
"
/>
<
module
name
=
"
DefaultComesLast
"
/>
<
module
name
=
"
EmptyStatement
"
/>
<
module
name
=
"
EqualsAvoidNull
"
/>
<
module
name
=
"
EqualsHashCode
"
/>
<
module
name
=
"
ExplicitInitialization
"
/>
<
module
name
=
"
FinalLocalVariable
"
/>
<
module
name
=
"
IllegalInstantiation
"
>
<
property
name
=
"
classes
"
value
=
"
java.lang.Boolean
"
/>
</
module
>
<
module
name
=
"
IllegalTokenText
"
>
<
property
name
=
"
tokens
"
value
=
"
NUM_INT,NUM_LONG
"
/>
<
property
name
=
"
format
"
value
=
"
^0[^lx]
"
/>
<
property
name
=
"
ignoreCase
"
value
=
"
true
"
/>
</
module
>
<
module
name
=
"
IllegalType
"
>
<
property
name
=
"
illegalClassNames
"
value
=
"
java.util.HashSet, java.util.HashMap, java.util.TreeSet, java.util.TreeMap
"
/>
</
module
>
<
module
name
=
"
InnerAssignment
"
/>
<
module
name
=
"
MissingSwitchDefault
"
/>
<
module
name
=
"
MultipleVariableDeclarations
"
/>
<
module
name
=
"
NoClone
"
/>
<
module
name
=
"
NoFinalizer
"
/>
<
module
name
=
"
OneStatementPerLine
"
/>
<
module
name
=
"
OverloadMethodsDeclarationOrder
"
/>
<
module
name
=
"
PackageDeclaration
"
/>
<
module
name
=
"
SimplifyBooleanExpression
"
/>
<
module
name
=
"
SimplifyBooleanReturn
"
/>
<
module
name
=
"
StringLiteralEquality
"
/>
<
module
name
=
"
UnnecessaryParentheses
"
/>
<
module
name
=
"
AvoidStarImport
"
/>
<
module
name
=
"
IllegalImport
"
>
<
property
name
=
"
illegalPkgs
"
value
=
"
sun, junit.framework
"
/>
</
module
>
<
module
name
=
"
RedundantImport
"
/>
<
module
name
=
"
UnusedImports
"
/>
<
module
name
=
"
ArrayTypeStyle
"
/>
<
module
name
=
"
CommentsIndentation
"
/>
<!--
Comparing this with null (i.e. this == null and this != null):
-->
<
module
name
=
"
DescendantToken
"
>
<
property
name
=
"
tokens
"
value
=
"
EQUAL,NOT_EQUAL
"
/>
<
property
name
=
"
limitedTokens
"
value
=
"
LITERAL_THIS,LITERAL_NULL
"
/>
<
property
name
=
"
maximumNumber
"
value
=
"
1
"
/>
<
property
name
=
"
maximumDepth
"
value
=
"
1
"
/>
<
property
name
=
"
sumTokenCounts
"
value
=
"
true
"
/>
</
module
>
<!--
The initialiser in for performs no setup (where a while statement could be used instead):
-->
<
module
name
=
"
DescendantToken
"
>
<
property
name
=
"
tokens
"
value
=
"
FOR_INIT
"
/>
<
property
name
=
"
limitedTokens
"
value
=
"
EXPR
"
/>
<
property
name
=
"
minimumNumber
"
value
=
"
1
"
/>
</
module
>
<
module
name
=
"
Indentation
"
/>
<
module
name
=
"
OuterTypeFilename
"
/>
<
module
name
=
"
UpperEll
"
/>
<
module
name
=
"
ModifierOrder
"
/>
<
module
name
=
"
RedundantModifier
"
/>
<
module
name
=
"
ClassTypeParameterName
"
/>
<
module
name
=
"
ConstantName
"
/>
<
module
name
=
"
InterfaceTypeParameterName
"
/>
<
module
name
=
"
LocalFinalVariableName
"
/>
<
module
name
=
"
LocalVariableName
"
/>
<
module
name
=
"
MemberName
"
/>
<
module
name
=
"
MethodName
"
/>
<
module
name
=
"
MethodTypeParameterName
"
/>
<
module
name
=
"
PackageName
"
>
<
property
name
=
"
format
"
value
=
"
^[a-z]+(\.[a-z][a-z0-9]*)*$
"
/>
</
module
>
<
module
name
=
"
ParameterName
"
/>
<
module
name
=
"
StaticVariableName
"
/>
<
module
name
=
"
TypeName
"
/>
<
module
name
=
"
LineLength
"
>
<
property
name
=
"
max
"
value
=
"
120
"
/>
<
property
name
=
"
ignorePattern
"
value
=
"
^ *\* *[^ ]+$
"
/>
</
module
>
<
module
name
=
"
OuterTypeNumber
"
/>
<
module
name
=
"
GenericWhitespace
"
/>
<
module
name
=
"
MethodParamPad
"
/>
<
module
name
=
"
ParenPad
"
/>
<
module
name
=
"
TypecastParenPad
"
/>
<
module
name
=
"
WhitespaceAfter
"
/>
<
module
name
=
"
WhitespaceAround
"
>
<
property
name
=
"
tokens
"
value
=
"
ASSIGN
"
/>
</
module
>
</
module
>
<
module
name
=
"
NewlineAtEndOfFile
"
>
<
property
name
=
"
lineSeparator
"
value
=
"
lf
"
/>
</
module
>
<
module
name
=
"
UniqueProperties
"
/>
<!--
the check to find trailing whitespace at the end of a line:
-->
<
module
name
=
"
RegexpSingleline
"
>
<!--
\s matches whitespace character, $ matches end of line.
-->
<
property
name
=
"
format
"
value
=
"
\s+$
"
/>
</
module
>
<
module
name
=
"
FileTabCharacter
"
>
<
property
name
=
"
eachLine
"
value
=
"
true
"
/>
</
module
>
</
module
>
Back
|
FazBrowse Home
|
New Git URL