We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0abeff5 commit ce705bcCopy full SHA for ce705bc
3 files changed
.rubocop.yml
@@ -1,4 +1,4 @@
1
-require:
+plugins:
2
- rubocop-rspec
3
- rubocop-performance
4
bin/rspec_changed_configs
@@ -13,8 +13,8 @@ def comment_only_change?(file)
13
end
14
15
changed_files = `git diff --name-only origin/master`
16
- .split("\n")
17
- .grep(CONFIG_PATH)
+ .split("\n")
+ .grep(CONFIG_PATH)
18
19
test_files = changed_files.reject { |file| comment_only_change?(file) }
20
bin/validate_configs
@@ -26,7 +26,7 @@ rescue Psych::Exception => error
26
warn " parse: #{error.message}"
27
failed << file
28
rescue StandardError => error
29
- puts "FAIL #{file}"
+ puts "FAIL #{file}"
30
warn " validation: #{error.class}: #{error.message}"
31
32
0 commit comments