Skip to content

Commit 3b85b2f

Browse files
committed
rubocop: Fix layout cops
1 parent e3c0a6e commit 3b85b2f

File tree

3 files changed

+1
-17
lines changed

3 files changed

+1
-17
lines changed

.rubocop_todo.yml

-14
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,6 @@
66
# Note that changes in the inspected code, or installation of new
77
# versions of RuboCop, may require this file to be generated again.
88

9-
# Offense count: 2
10-
# This cop supports safe autocorrection (--autocorrect).
11-
Layout/EmptyLines:
12-
Exclude:
13-
- 'Gemfile'
14-
- 'Rakefile'
15-
16-
# Offense count: 1
17-
# This cop supports safe autocorrection (--autocorrect).
18-
# Configuration parameters: Width, AllowedPatterns.
19-
Layout/IndentationWidth:
20-
Exclude:
21-
- 'Rakefile'
22-
239
# Offense count: 1
2410
Lint/MixedRegexpCaptureTypes:
2511
Exclude:

Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ group :development do
2727
gem 'simplecov'
2828
gem 'simplecov-console'
2929

30-
3130
# Required for testing on Windows
3231
gem 'ffi', :platforms => [:x64_mingw]
3332
end

Rakefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ end
1010
namespace :spec do
1111
desc 'Run RSpec code examples with coverage collection'
1212
task :coverage do
13-
ENV['COVERAGE'] = 'yes'
13+
ENV['COVERAGE'] = 'yes'
1414
Rake::Task['spec'].execute
1515
end
1616
end
1717

18-
1918
RSpec::Core::RakeTask.new(:acceptance) do |t|
2019
t.pattern = 'spec/acceptance/**/*_spec.rb'
2120
end

0 commit comments

Comments
 (0)