Rubocop: Enable various EmptyLine cops (#15194)

Disabled:
 * EmptyLineAfterGuardClause
 * EmptyLineAfterMultilineCondition
 * EmptyLinesAroundAccessModifier

Enabled:
 * Layout/EmptyLineAfterMagicComment
 * Layout/EmptyLineBetweenDefs
 * Layout/EmptyLines
 * Layout/EmptyLinesAroundArguments
 * Layout/EmptyLinesAroundAttributeAccessor
 * Layout/EmptyLinesAroundBeginBody
 * Layout/EmptyLinesAroundBlockBody
 * Layout/EmptyLinesAroundExceptionHandlingKeywords
 * Layout/EmptyLinesAroundMethodBody
 * Layout/EmptyLinesAroundModuleBody
This commit is contained in:
Andres Rodriguez 2023-07-18 16:49:16 -04:00 committed by GitHub
parent d95a0bba74
commit acd87a69e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
212 changed files with 92 additions and 447 deletions

View file

@ -1,4 +1,5 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)