diff --git a/.rubocop/rails.yml b/.rubocop/rails.yml index bbbdfd0eac9..aa887535f17 100644 --- a/.rubocop/rails.yml +++ b/.rubocop/rails.yml @@ -1,17 +1,21 @@ --- -Rails: - Exclude: # TODO: Work through these one by one in old migrations - - db/*migrate/* - Rails/BulkChangeTable: Enabled: false # Conflicts with strong_migrations features Rails/CreateTableWithTimestamps: - Exclude: # TODO: Work through these one by one in old migrations - - db/*migrate/* + Exclude: + - db/*migrate/* # TODO: Work through these in old migrations Rails/EnvironmentVariableAccess: Enabled: false Rails/FilePath: EnforcedStyle: arguments + +Rails/ReversibleMigration: + Exclude: + - db/*migrate/* # TODO: Work through these in old migrations + +Rails/ThreeStateBooleanColumn: + Exclude: + - db/*migrate/* # TODO: Work through these in old migrations