Skip to content

Commit

Permalink
add rubocop rake target; run rubocop by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed Feb 9, 2023
1 parent b8aeca2 commit 4dc8f28
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

RSpec::Core::RakeTask.new(:spec)
RuboCop::RakeTask.new

task :default => :spec
task :default => [
:spec,
:rubocop,
]

begin
require 'github_changelog_generator/task'
Expand Down

0 comments on commit 4dc8f28

Please sign in to comment.