File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,10 @@ RSpec/NoExpectationExample:
261261 Enabled : true
262262RSpec/NotToNot :
263263 Enabled : false
264+ RSpec/Output :
265+ Enabled : true
266+ Exclude :
267+ - spec/performance/**/*
264268RSpec/PendingWithoutReason :
265269 Enabled : true
266270RSpec/PredicateMatcher :
@@ -342,6 +346,8 @@ Style/DoubleNegation:
342346 Enabled : false
343347Style/EmptyCaseCondition :
344348 Enabled : false
349+ Style/EmptyClassDefinition :
350+ Enabled : true
345351Style/EmptyHeredoc :
346352 Enabled : true
347353Style/EmptyMethod :
@@ -424,6 +430,8 @@ Style/NegatedIf:
424430 Enabled : false
425431Style/NegatedIfElseCondition :
426432 Enabled : true
433+ Style/NegativeArrayIndex :
434+ Enabled : true
427435Style/NestedFileDirname :
428436 Enabled : true
429437Style/NilLambda : # TODO
@@ -490,6 +498,8 @@ Style/RedundantStringEscape:
490498 Enabled : true
491499Style/ReturnNilInPredicateMethodDefinition :
492500 Enabled : true
501+ Style/ReverseFind :
502+ Enabled : true
493503Style/SafeNavigationChainLength :
494504 Enabled : true
495505Style/SelectByRegexp :
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ def warn_about_non_default_folders
156156 actual = folders . map ( &:name ) . sort
157157 extra = actual - expected
158158 extra . each do |name |
159- puts "Unexpected folder '#{ name } ' found - deleting"
159+ warn "Unexpected folder '#{ name } ' found - deleting"
160160 delete_folder name
161161 end
162162 end
You can’t perform that action at this time.
0 commit comments