forked from jgrapht/jgrapht
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add checkstyle Variable/Methode/Type naming convention rules (jgrapht…
…#1052 - part 1) (jgrapht#1066) * [Checkstyle] update to version 8.41 and update DTD-file links * [CheckStyle] enforce Variable/Method/Type-name conventions for non API Add variable/method/type naming-convention checkstyle rules. Fix all variable/method/type naming-convention violations that do not require modifications of the public API. * [CheckStyle] suppress Variable/Method/Type-name rules in API elements Suppress all Variable/Method/Type name violations on API elements. Fixing those rules requires API modifications. In case of (static) fields, the fields are already deprecated and a replacement is provided. org.jgrapht.nio.DefaultAttribute : make static field 'NULL' final. This is actually an API break, but I assume it was never intended to make it modifiable and it was not-final by accident.
- Loading branch information
1 parent
6c5148a
commit 3c1dcee
Showing
81 changed files
with
913 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
<?xml version="1.0"?> | ||
|
||
<!DOCTYPE suppressions PUBLIC | ||
"-//Puppy Crawl//DTD Suppressions 1.1//EN" | ||
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> | ||
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN" | ||
"https://checkstyle.org/dtds/suppressions_1_2.dtd"> | ||
|
||
<suppressions> | ||
<!-- Ignore header checks for package-info.java files --> | ||
<suppress files="package-info\.java" checks="Header"/> | ||
<suppress files="package-info\.java" checks="Header" /> | ||
|
||
<!-- Suppression of Javadoc related checks for test files --> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" checks="JavadocMethod"/> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" checks="JavadocType"/> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" checks="JavadocPackage"/> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" checks="JavadocMethod" /> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" checks="JavadocType" /> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" checks="JavadocPackage" /> | ||
<!-- Suppress main-checks in test-code and test-checks in main-code --> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" id="LocalFinalVariableNameMain" /> | ||
<suppress files="[/\\]src[/\\]main[/\\].*" id="LocalFinalVariableNameTest" /> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" id="LocalVariableNameMain" /> | ||
<suppress files="[/\\]src[/\\]main[/\\].*" id="LocalVariableNameTest" /> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" id="MemberNameMain" /> | ||
<suppress files="[/\\]src[/\\]main[/\\].*" id="MemberNameTest" /> | ||
<suppress files="[/\\]src[/\\]test[/\\].*" id="MethodNameMain" /> | ||
<suppress files="[/\\]src[/\\]main[/\\].*" id="MethodNameTest" /> | ||
</suppressions> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.