diff --git a/lib/tasks/factorybot.rake b/lib/tasks/factorybot.rake new file mode 100644 index 0000000..d09b34c --- /dev/null +++ b/lib/tasks/factorybot.rake @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +namespace :factorybot do + desc 'Lint FactoryBot factories' + task :lint do |_| + FactoryBot.lint + end +end