Skip to content

Commit ce705bc

Browse files
committed
Fix RuboCop CI warnings
1 parent 0abeff5 commit ce705bc

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require:
1+
plugins:
22
- rubocop-rspec
33
- rubocop-performance
44

bin/rspec_changed_configs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ def comment_only_change?(file)
1313
end
1414

1515
changed_files = `git diff --name-only origin/master`
16-
.split("\n")
17-
.grep(CONFIG_PATH)
16+
.split("\n")
17+
.grep(CONFIG_PATH)
1818

1919
test_files = changed_files.reject { |file| comment_only_change?(file) }
2020

bin/validate_configs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rescue Psych::Exception => error
2626
warn " parse: #{error.message}"
2727
failed << file
2828
rescue StandardError => error
29-
puts "FAIL #{file}"
29+
puts "FAIL #{file}"
3030
warn " validation: #{error.class}: #{error.message}"
3131
failed << file
3232
end

0 commit comments

Comments
 (0)