From 7aa329046cb2984bd5e122a2ba93282348b3ca9a Mon Sep 17 00:00:00 2001 From: Lukas Audzevicius Date: Mon, 22 Jan 2024 15:37:32 +0000 Subject: [PATCH] Addressing LineLength --- .rubocop.yml | 3 +++ .rubocop_todo.yml | 7 ------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 06ba896a..d0577de1 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -18,6 +18,9 @@ AllCops: Style/ClassAndModuleChildren: Enabled: false +Layout/LineLength: + Max: 200 + #################################################### # Cops below here due for deprecation #################################################### diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index f764d0b1..d927f4ef 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -187,10 +187,3 @@ Style/OptionalBooleanParameter: - 'lib/puppet-strings/yard/code_objects/type.rb' - 'lib/puppet-strings/yard/handlers/ruby/data_type_handler.rb' - 'lib/puppet-strings/yard/handlers/ruby/function_handler.rb' - -# Offense count: 136 -# This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns. -# URISchemes: http, https -Layout/LineLength: - Max: 199