.mvn
config
checkstyle
checkstyle.xml
suppressions.xml
docker
docs
platformQuickStarts
scripts
webgoat-container
webgoat-images
webgoat-integration-tests
webgoat-lessons
webgoat-server
webwolf
.gitignore
.travis.yml
COPYRIGHT.txt
CREATE_RELEASE.MD
LICENSE.txt
README.MD
buildspec.yml
docker-compose-local.yml
docker-compose-postgres.yml
docker-compose.yml
goat-with-reverseproxy.yaml
mvn-debug
mvnw
mvnw.cmd
pmd-ruleset.xml
pom.xml
project-suppression.xml
* Remove Guava dependency from WebGoat * Add Checkstyle to the project with very basic standards so we have a style across lessons. It does not interfere with basic Intellij formatting
11 lines
565 B
XML
11 lines
565 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE suppressions PUBLIC
|
|
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
|
|
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
|
|
<suppressions>
|
|
<suppress files="MD5.java" checks="[a-zA-Z0-9]*" />
|
|
<suppress files="VulnerableComponentsLesson.java" checks="[a-zA-Z0-9]*" />
|
|
<suppress files="ContentTypeAssignment.java" checks="IllegalImportCheck" />
|
|
<suppress files="SimpleXXE.java" checks="IllegalImportCheck" />
|
|
<suppress files="HtmlTamperingTask.java" checks="ParameterName" />
|
|
</suppressions> |