diff options
| author | Bogdan Drutu <bdrutu@google.com> | 2017-03-13 11:08:32 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-13 11:08:32 -0700 |
| commit | 639a162129e1d87e45a8f3a100ed00754b98ce0e (patch) | |
| tree | a8f7cc646bd0be64a424fcb8b228dd07a7e14a4c | |
| parent | d46382b0501f87395a1aba7b26ba612505d323e0 (diff) | |
| download | platform_external_opencensus-java-639a162129e1d87e45a8f3a100ed00754b98ce0e.tar.gz platform_external_opencensus-java-639a162129e1d87e45a8f3a100ed00754b98ce0e.tar.bz2 platform_external_opencensus-java-639a162129e1d87e45a8f3a100ed00754b98ce0e.zip | |
Ignore SingleLineJavadoc validation until google_checks gets updated in checkstyle. (#137)
| -rw-r--r-- | pom.xml | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> @@ -121,6 +121,13 @@ <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <violationSeverity>warning</violationSeverity> + <!-- + Remove the SingleLineJavadoc to be able to use google-java-formatter. See + https://github.com/checkstyle/checkstyle/issues/3762 + https://github.com/checkstyle/checkstyle/issues/3755 + https://github.com/checkstyle/checkstyle/issues/3888 + --> + <violationIgnore>SingleLineJavadoc</violationIgnore> </configuration> <goals> <goal>check</goal> |
