diff options
author | Lerk <lukas@k40s.net> | 2020-05-10 16:42:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 16:42:48 +0200 |
commit | 8012fce727559ae49130a43ba6b44168f0b55d04 (patch) | |
tree | f431640afbd9036a1969f7496e28c9d8579bc73c | |
parent | 4b766f984689311523b89e1b68d2a11dff3fc396 (diff) |
fix rubocop errors (#13690)
-rw-r--r-- | .rubocop.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 9a68becbb..3a11f7000 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -2,7 +2,7 @@ require: - rubocop-rails AllCops: - TargetRubyVersion: 2.3 + TargetRubyVersion: 2.4 Exclude: - 'spec/**/*' - 'db/**/*' @@ -46,7 +46,7 @@ Metrics/ClassLength: Metrics/CyclomaticComplexity: Max: 25 -Metrics/LineLength: +Layout/LineLength: AllowURI: true Enabled: false |