Repository: calcite Updated Branches: refs/heads/master 172db20b2 -> 67071b6b0
Suppress checkstyle on generated source files, following [CALCITE-1963] Project: http://git-wip-us.apache.org/repos/asf/calcite/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/1f04d556 Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/1f04d556 Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/1f04d556 Branch: refs/heads/master Commit: 1f04d556fad1ba8ef4a9ac6f73aca2bdbb945f37 Parents: 172db20 Author: Julian Hyde <[email protected]> Authored: Fri Sep 8 11:48:34 2017 -0700 Committer: Julian Hyde <[email protected]> Committed: Fri Sep 8 11:48:34 2017 -0700 ---------------------------------------------------------------------- src/main/config/checkstyle/suppressions.xml | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite/blob/1f04d556/src/main/config/checkstyle/suppressions.xml ---------------------------------------------------------------------- diff --git a/src/main/config/checkstyle/suppressions.xml b/src/main/config/checkstyle/suppressions.xml index b76afb7..c21c207 100644 --- a/src/main/config/checkstyle/suppressions.xml +++ b/src/main/config/checkstyle/suppressions.xml @@ -26,6 +26,8 @@ limitations under the License. <suppress checks=".*" files="org-apache-calcite-jdbc.properties"/> <suppress checks=".*" files="Foo.java"/> <suppress checks=".*" files=".*[/\\]target[/\\]maven-archiver[/\\]pom.properties"/> + <suppress checks=".*" files=".*[/\\]target[/\\]generated-sources[/\\].*"/> + <suppress checks=".*" files=".*[/\\]target[/\\]generated-test-sources[/\\].*"/> <suppress checks=".*" files="git.properties"/> <suppress checks=".*" files="trace.properties"/> <suppress checks=".*" files="release.properties"/>
