summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2019-03-03 17:37:58 +0200
committerKyrylo Silin <silin@kyrylo.org>2019-03-03 17:37:58 +0200
commit4956376f1340f4eb41438e5097237b4196a7273b (patch)
tree53d5e4d7e1ccd14b0f32e682cf9c9cff6bc5ac69 /.rubocop.yml
parentb2af65a6d3bf0ad93cc4cd0c9993b6eb0b606480 (diff)
downloadpry-4956376f1340f4eb41438e5097237b4196a7273b.tar.gz
rubocop: fix offences of the Metrics/LineLength cop
I realise that some code might be less readable now, but now that we set a good default limit, we protect the codebase from further mess. It's important to do this to prevent adding more mess to already messy code that we have. :doctor:
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 589f1834..9d899265 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -49,3 +49,6 @@ Style/StringLiterals:
# TODO: delete this rule when we drop Ruby 1.9.3 support.
Style/SymbolArray:
EnforcedStyle: brackets
+
+Metrics/LineLength:
+ Max: 90