@@ -69,7 +69,7 @@ Style/CaseIndentation:
69
69
Description : Indentation of when in a case/when/[else/]end.
70
70
StyleGuide : https://github.com/bbatsov/ruby-style-guide#indent-when-to-case
71
71
Enabled : true
72
- IndentWhenRelativeTo : case
72
+ EnforcedStyle : case
73
73
SupportedStyles :
74
74
- case
75
75
- end
@@ -374,9 +374,6 @@ Style/SpaceAroundBlockParameters:
374
374
Description : Checks the spacing inside and after block parameters pipes.
375
375
Enabled : true
376
376
EnforcedStyleInsidePipes : no_space
377
- SupportedStyles :
378
- - space
379
- - no_space
380
377
Style/SpaceAroundEqualsInParameterDefault :
381
378
Description : Checks that the equals signs in parameter default assignments have
382
379
or don't have surrounding space depending on configuration.
@@ -504,6 +501,7 @@ Metrics/LineLength:
504
501
- http
505
502
- https
506
503
Exclude :
504
+ - tmuxinator.gemspec
507
505
- lib/tmuxinator/window.rb
508
506
- spec/lib/tmuxinator/window_spec.rb
509
507
Metrics/MethodLength :
@@ -525,10 +523,14 @@ Metrics/PerceivedComplexity:
525
523
Max : 7
526
524
Metrics/BlockLength :
527
525
Exclude :
526
+ - tmuxinator.gemspec
528
527
- lib/tmuxinator/cli.rb
529
528
- spec/factories/**/*.rb
530
529
- spec/matchers/**/*.rb
531
530
- spec/**/*_spec.rb
531
+ Lint/InverseMethods :
532
+ Exclude :
533
+ - lib/tmuxinator/project.rb
532
534
Lint/PercentStringArray :
533
535
Exclude :
534
536
- lib/tmuxinator/cli.rb
@@ -543,17 +545,11 @@ Lint/AssignmentInCondition:
543
545
Lint/EndAlignment :
544
546
Description : Align ends correctly.
545
547
Enabled : true
546
- AlignWith : keyword
547
- SupportedStyles :
548
- - keyword
549
- - variable
548
+ EnforcedStyleAlignWith : keyword
550
549
Lint/DefEndAlignment :
551
550
Description : Align ends corresponding to defs correctly.
552
551
Enabled : true
553
- AlignWith : start_of_line
554
- SupportedStyles :
555
- - start_of_line
556
- - def
552
+ EnforcedStyleAlignWith : start_of_line
557
553
Style/InlineComment :
558
554
Description : Avoid inline comments.
559
555
Enabled : false
@@ -717,7 +713,7 @@ Style/LineEndConcatenation:
717
713
Description : Use \ instead of + or << to concatenate two string literals at line
718
714
end.
719
715
Enabled : false
720
- Style/MethodCallParentheses :
716
+ Style/MethodCallWithoutArgsParentheses :
721
717
Description : Do not use parentheses for method calls with no arguments.
722
718
StyleGuide : https://github.com/bbatsov/ruby-style-guide#no-args-no-parens
723
719
Enabled : true
@@ -876,6 +872,8 @@ Style/UnneededPercentQ:
876
872
Description : Checks for %q/%Q when single quotes or double quotes would do.
877
873
StyleGuide : https://github.com/bbatsov/ruby-style-guide#percent-q
878
874
Enabled : true
875
+ Exclude :
876
+ - tmuxinator.gemspec
879
877
# Style/UnneededPercentX:
880
878
# Description: Checks for %x when `` would do.
881
879
# StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-x
0 commit comments