File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ Layout/IndentationWidth:
30
30
Layout/LineEndStringConcatenationIndentation :
31
31
Enabled : true
32
32
33
+ # Explicitly enables this cop new in 1.7
34
+ Layout/SpaceBeforeBrackets :
35
+ Enabled : true
36
+
33
37
# puppet uses symbol booleans in types and providers to work around long standing
34
38
# bugs when trying to manage falsey pararameters and properties
35
39
Lint/BooleanSymbol :
Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ def remove_edge!(e)
342
342
if edge? ( e . source , e . target )
343
343
@upstream_from . clear
344
344
@downstream_from . clear
345
- @in_to [ e . target ] . delete e . source if ( @in_to [ e . target ] [ e . source ] -= [ e ] ) . empty?
345
+ @in_to [ e . target ] . delete e . source if ( @in_to [ e . target ] [ e . source ] -= [ e ] ) . empty?
346
346
@out_from [ e . source ] . delete e . target if ( @out_from [ e . source ] [ e . target ] -= [ e ] ) . empty?
347
347
end
348
348
end
You can’t perform that action at this time.
0 commit comments