Skip to content
Snippets Groups Projects
Unverified Commit d65b2c19 authored by Nick Schonning's avatar Nick Schonning Committed by GitHub
Browse files

Apply Rubocop Style/RedundantConstantBase (#23463)

parent e4f37fad
No related branches found
No related tags found
No related merge requests found
......@@ -3194,14 +3194,6 @@ Style/RedundantBegin:
- 'lib/sanitize_ext/sanitize_config.rb'
- 'lib/tasks/db.rake'
# Offense count: 3
# This cop supports safe autocorrection (--autocorrect).
Style/RedundantConstantBase:
Exclude:
- 'config.ru'
- 'lib/tasks/statistics.rake'
- 'spec/rails_helper.rb'
# Offense count: 16
# This cop supports safe autocorrection (--autocorrect).
Style/RedundantRegexpCharacterClass:
......
# frozen_string_literal: true
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('config/environment', __dir__)
require File.expand_path('config/environment', __dir__)
run Rails.application
......@@ -13,7 +13,7 @@ namespace :mastodon do
%w(Validators app/validators),
%w(Workers app/workers),
].each do |name, dir|
::STATS_DIRECTORIES << [name, Rails.root.join(dir)]
STATS_DIRECTORIES << [name, Rails.root.join(dir)]
end
end
end
......@@ -33,7 +33,7 @@ Devise::Test::ControllerHelpers.module_eval do
end
RSpec.configure do |config|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
config.fixture_path = "#{Rails.root}/spec/fixtures"
config.use_transactional_fixtures = true
config.order = 'random'
config.infer_spec_type_from_file_location!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment