-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Remove pre-commit checkstyle in favour of maven solution
Checkstyle used in pre-commit rule depends on docker based setup, which is not intended to enforce to al developers in their environments. Using maven checkstyle solution not enforced is an intermediary solution to start improve the source quality until we get the enforce status. Signed-off-by: Helio Chissini de Castro <[email protected]>
- Loading branch information
1 parent
cd8b354
commit efcc1c0
Showing
4 changed files
with
454 additions
and
20 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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE module PUBLIC "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd"> | ||
|
||
<module name="Checker"> | ||
<property name="charset" value="UTF-8"/> | ||
|
||
<!-- Import Google style configuration --> | ||
<module name="TreeWalker"> | ||
<module name="ImportControl"> | ||
<property name="file" value="scripts/lint/google_checks.xml"/> | ||
</module> | ||
</module> | ||
|
||
|
||
<module name="LineLength"> | ||
<property name="max" value="120"/> | ||
<property name="ignorePattern" value="^$"/> | ||
</module> | ||
</module> |
Oops, something went wrong.