You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2015/03/28 22:23:53 UTC

[04/10] incubator-calcite git commit: [CALCITE-644] Increase check style line limit to 100 chars (Nick Dimiduk)

[CALCITE-644] Increase check style line limit to 100 chars (Nick Dimiduk)

Close apache/incubator-calcite#64


Project: http://git-wip-us.apache.org/repos/asf/incubator-calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-calcite/commit/aa7cb035
Tree: http://git-wip-us.apache.org/repos/asf/incubator-calcite/tree/aa7cb035
Diff: http://git-wip-us.apache.org/repos/asf/incubator-calcite/diff/aa7cb035

Branch: refs/heads/master
Commit: aa7cb0355159a78a98573293fd67f6dc692975ae
Parents: 321dc43
Author: Nick Dimiduk <nd...@gmail.com>
Authored: Tue Mar 24 11:00:35 2015 -0700
Committer: julianhyde <jh...@apache.org>
Committed: Fri Mar 27 13:19:05 2015 -0700

----------------------------------------------------------------------
 src/main/config/checkstyle/checker.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-calcite/blob/aa7cb035/src/main/config/checkstyle/checker.xml
----------------------------------------------------------------------
diff --git a/src/main/config/checkstyle/checker.xml b/src/main/config/checkstyle/checker.xml
index 0ff2529..5b2fe9f 100644
--- a/src/main/config/checkstyle/checker.xml
+++ b/src/main/config/checkstyle/checker.xml
@@ -226,7 +226,7 @@ limitations under the License.
     <!-- Lines cannot exceed 80 chars, except if they are hyperlinks
          or strings (possibly preceded by '+' and followed by say '),'. -->
     <module name="LineLength">
-      <property name="max" value="80"/>
+      <property name="max" value="100"/>
       <property name="ignorePattern" value="^import|@see|@link|@BaseMessage|href|^[ +]*&quot;.*&quot;[);,]*$"/>
     </module>
       <!-- Over time, we will revise this down -->