From 8a70156b619498f213369c64f642de8940b098b6 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Thu, 23 Apr 2026 12:07:56 +0000 Subject: [PATCH] Rubocop: Layout/EmptyLinesAroundClassBody --- .rubocop_todo.yml | 8 -------- db/migrate/20251130035700_create_versions.rb | 1 - 2 files changed, 9 deletions(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 084e16672..f53a04c90 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -99,14 +99,6 @@ FactoryBot/ExcessiveCreateList: FactoryBot/SyntaxMethods: Enabled: false -# Offense count: 1 -# This cop supports safe autocorrection (--autocorrect). -# Configuration parameters: EnforcedStyle. -# SupportedStyles: empty_lines, empty_lines_except_namespace, empty_lines_special, no_empty_lines, beginning_only, ending_only -Layout/EmptyLinesAroundClassBody: - Exclude: - - 'db/migrate/20251130035700_create_versions.rb' - # Offense count: 312 # This cop supports safe autocorrection (--autocorrect). # Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle. diff --git a/db/migrate/20251130035700_create_versions.rb b/db/migrate/20251130035700_create_versions.rb index 2662f847e..e5489214f 100644 --- a/db/migrate/20251130035700_create_versions.rb +++ b/db/migrate/20251130035700_create_versions.rb @@ -1,7 +1,6 @@ # This migration creates the `versions` table for the Version class. # All other migrations PT provides are optional. class CreateVersions < ActiveRecord::Migration[7.2] - # The largest text column available in all supported RDBMS is # 1024^3 - 1 bytes, roughly one gibibyte. We specify a size # so that MySQL will use `longtext` instead of `text`. Otherwise,