Skip to content

Commit 593973c

Browse files
committed
Disable rubocop
It causes more issues than it solves. Ideally we can switch to a simpler formatting tool and make it part of commit hooks rather than a CI step.
1 parent 225ded9 commit 593973c

3 files changed

Lines changed: 1 addition & 106 deletions

File tree

.rubocop.yml

Lines changed: 0 additions & 99 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ group :development do
99
gem 'simplecov'
1010
gem 'samus', '~> 3.0.8', :require => false
1111
gem 'coveralls', :require => false
12-
gem 'rubocop', '0.44.1', :require => false
1312
end
1413

1514
group :asciidoc do

Rakefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,12 @@ rescue LoadError
2323
nil # noop
2424
end
2525

26-
desc "Check code style with Rubocop"
27-
task :rubocop do
28-
sh "rubocop"
29-
end
30-
3126
desc "Generate documentation for Yard, and fail if there are any warnings"
3227
task :test_doc do
3328
sh "ruby bin/yard --fail-on-warning #{"--no-progress" if ENV["CI"]}"
3429
end
3530

36-
task :default => [:rubocop, :spec, :test_doc]
31+
task :default => [:spec, :test_doc]
3732

3833
YARD::Rake::YardocTask.new do |t|
3934
t.options += ['--title', "YARD #{YARD::VERSION} Documentation"]

0 commit comments

Comments
 (0)