You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ja...@apache.org on 2019/05/07 18:39:38 UTC

[hbase] branch branch-2.1 updated: HBASE-20851 Change rubocop config for max line length of 100

This is an automated email from the ASF dual-hosted git repository.

janh pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new c0b58a3  HBASE-20851 Change rubocop config for max line length of 100
c0b58a3 is described below

commit c0b58a33c7357aad8cf7d544b3dd0c361002c25f
Author: Murtaza Hassan <sy...@gmail.com>
AuthorDate: Tue May 7 17:28:02 2019 +0200

    HBASE-20851 Change rubocop config for max line length of 100
---
 hbase-shell/src/main/ruby/.rubocop.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/hbase-shell/src/main/ruby/.rubocop.yml b/hbase-shell/src/main/ruby/.rubocop.yml
index 7b04138..72396ed 100644
--- a/hbase-shell/src/main/ruby/.rubocop.yml
+++ b/hbase-shell/src/main/ruby/.rubocop.yml
@@ -2,4 +2,7 @@ Naming/HeredocDelimiterNaming:
   Enabled: false
 
 Layout/IndentHeredoc:
-  Enabled: false
\ No newline at end of file
+  Enabled: false
+
+Metrics/LineLength:
+  Max: 100
\ No newline at end of file