-
Notifications
You must be signed in to change notification settings - Fork 1
/
release-notes.html
118 lines (71 loc) · 4.15 KB
/
release-notes.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Scalastyle - Release notes" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Scalastyle - Release notes</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/scalastyle">View on GitHub</a>
<h1 id="project_title">Scalastyle - Release notes</h1>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h1 id='version_010'>Version 0.1.0</h1>
<p>The first release of Scalastyle.</p>
<p>The following checkers were added:</p>
<ul>
<li>ClassNamesChecker - Check that class names match a regular expression</li>
<li>CovariantEqualsChecker - Check that classes and objects do not define equals without overriding equals(java.lang.Object).</li>
<li>CyclomaticComplexityChecker - Checks that the cyclomatic complexity of a method does exceed a value</li>
<li>EqualsHashCodeChecker - Check that if a class implements either equals or hashCode, it should implement the other</li>
<li>FileLengthChecker - Check the number of lines in a file</li>
<li>FileLineLengthChecker - Check the number of characters in a line</li>
<li>FileTabChecker - Check that there are no tabs in a file</li>
<li>HeaderMatchesChecker - Check the first lines of each file matches the text</li>
<li>IfBraceChecker - Checks that if statement have braces</li>
<li>IllegalImportsChecker - Check that a class does not import certain classes</li>
<li>MagicNumberChecker - Checks for use of magic numbers</li>
<li>MethodLengthChecker - Checks that methods do not exceed a maximum length</li>
<li>MethodNamesChecker - Check that method names match a regular expression</li>
<li>NewLineAtEofChecker - Checks that a file ends with a newline character</li>
<li>NoCloneChecker - Check that classes and objects do not define the clone() method</li>
<li>NoFinalizeChecker - Check that classes and objects do not define the finalize() method</li>
<li>NoNewLineAtEofChecker - Checks that a file does not end with a newline character</li>
<li>NoWhitespaceAfterLeftBracketChecker - No whitespace after left bracket ‘[’</li>
<li>NoWhitespaceBeforeLeftBracketChecker - No whitespace before left bracket ‘[’</li>
<li>NullChecker - Check that null is not used</li>
<li>NumberOfMethodsInTypeChecker - Check that a class / trait / object does not have too many methods</li>
<li>NumberOfTypesChecker - Checks that there are not too many types declared in a file</li>
<li>ObjectNamesChecker - Check that object names match a regular expression</li>
<li>PackageObjectNamesChecker - Check that package object names match a regular expression</li>
<li>ParameterNumberChecker - Maximum number of parameters for a method</li>
<li>PublicMethodsHaveTypeChecker - Check that a method has an explicit return type, it is not inferred</li>
<li>RegexChecker - Checks that a regular expression cannot be matched, if found reports this</li>
<li>ReturnChecker - Check that return is not used</li>
<li>SimplifyBooleanExpressionChecker - Boolean expression can be simplified</li>
<li>SpacesAfterPlusChecker - Check that the plus sign is followed by a space</li>
<li>SpacesBeforePlusChecker - Check that the plus sign is preceded by a space</li>
<li>StructuralTypeChecker - Check that structural types are not used.</li>
<li>UppercaseLChecker - Checks that if a long literal is used, then an uppercase L is used</li>
<li>VarFieldChecker - Checks that classes and objects do not define mutable fields</li>
<li>VarLocalChecker - Checks that functions do not define mutable variables</li>
<li>WhileChecker - Checks that while is not used</li>
<li>WhitespaceEndOfLineChecker - Check that there is no trailing whitespace at the end of lines</li>
</ul>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
</footer>
</div>
</body>
</html>