Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/rubocop.rake')
-rw-r--r--lib/tasks/rubocop.rake17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/tasks/rubocop.rake b/lib/tasks/rubocop.rake
index f5d16835347..a4147ae1bba 100644
--- a/lib/tasks/rubocop.rake
+++ b/lib/tasks/rubocop.rake
@@ -4,4 +4,21 @@ unless Rails.env.production?
require 'rubocop/rake_task'
RuboCop::RakeTask.new
+
+ namespace :rubocop do
+ namespace :todo do
+ desc 'Generate RuboCop todos'
+ task :generate do
+ require 'rubocop'
+
+ options = %w[
+ --auto-gen-config
+ --auto-gen-only-exclude
+ --exclude-limit=100000
+ ]
+
+ RuboCop::CLI.new.run(options)
+ end
+ end
+ end
end