Skip to content

Commit

Permalink
Disable Gemspec/DevelopmentDependencies until we enforce either Gemsp…
Browse files Browse the repository at this point in the history
…ec or Gemfile standard (#149)
  • Loading branch information
xjunior authored Jul 12, 2023
1 parent 289f70e commit cfbd962
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/edgestitch/lib/edgestitch/mysql/dump.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require "open3"

require_relative "./structure_constraint_order_munger"
require_relative "structure_constraint_order_munger"

module Edgestitch
module Mysql
Expand Down Expand Up @@ -71,7 +71,7 @@ def export_migrations(migrations)
"schema_migrations",
"-w", "version IN (#{versions.join(',')})"
)
end.join.gsub(/VALUES /, "VALUES\n").gsub(/,/, ",\n")
end.join.gsub("VALUES ", "VALUES\n").gsub(",", ",\n")
end

private
Expand Down
3 changes: 3 additions & 0 deletions packages/rubocop-powerhome/config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ AllCops:
Gemspec/RequiredRubyVersion:
Enabled: false

Gemspec/DevelopmentDependencies:
Enabled: false

Layout/AccessModifierIndentation:
EnforcedStyle: outdent

Expand Down

0 comments on commit cfbd962

Please sign in to comment.