mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
This broke loading the rake tasks in the production environment as we only have rubocop in development.
17 lines
398 B
Ruby
17 lines
398 B
Ruby
# frozen_string_literal: true
|
|
|
|
unless Rails.env.production?
|
|
require 'rubocop/rake_task'
|
|
|
|
RuboCop::RakeTask.new(:rubocop) do |task|
|
|
task.patterns = []
|
|
task.options = ['--display-cop-names']
|
|
end
|
|
|
|
namespace :rubocop do
|
|
desc 'Generate .rubocop_todo.yml'
|
|
task :auto_gen_config do
|
|
sh 'rubocop --display-cop-names --auto-gen-config --auto-gen-only-exclude'
|
|
end
|
|
end
|
|
end
|