File tree Expand file tree Collapse file tree 1 file changed +19
-24
lines changed Expand file tree Collapse file tree 1 file changed +19
-24
lines changed Original file line number Diff line number Diff line change 11---
22plugins :
3- - rubocop-performance
4- - rubocop-rspec
5- - rubocop-rspec_rails
6- - rubocop-factory_bot
7- - rubocop-capybara
3+ - rubocop-performance
4+ - rubocop-rspec
5+ - rubocop-rspec_rails
6+ - rubocop-factory_bot
7+ - rubocop-capybara
88AllCops :
99 Newcops : enable
1010 ExtraDetails : true
1111 DisplayStyleGuide : true
1212 DisplayCopNames : true
1313 TargetRubyVersion : ' 2.7'
14- Include :
15- - " **/*.rb"
14+ Include : ['**/*.rb']
1615 Exclude :
17- - bin/*
18- - " .vendor/**/*"
19- - " **/Gemfile"
20- - " **/Rakefile"
21- - pkg/**/*
22- - spec/fixtures/**/*
23- - vendor/**/*
24- - " **/Puppetfile"
25- - " **/Vagrantfile"
26- - " **/Guardfile"
16+ - bin/*
17+ - .vendor/**/*
18+ - ' **/Gemfile'
19+ - ' **/Rakefile'
20+ - pkg/**/*
21+ - spec/fixtures/**/*
22+ - vendor/**/*
23+ - ' **/Puppetfile'
24+ - ' **/Vagrantfile'
25+ - ' **/Guardfile'
2726Layout/LineLength :
2827 Description : People have wide screens, use them.
2928 Max : 200
3029RSpec/BeforeAfterAll :
3130 Description : Beware of using after(:all) as it may cause state to leak between tests.
3231 A necessary evil in acceptance testing.
33- Exclude :
34- - spec/acceptance/**/*.rb
32+ Exclude : [spec/acceptance/**/*.rb]
3533RSpec/HookArgument :
3634 Description : Prefer explicit :each argument, matching existing module's style
3735 EnforcedStyle : each
3836RSpec/DescribeSymbol :
39- Exclude :
40- - spec/unit/facter/**/*.rb
37+ Exclude : [spec/unit/facter/**/*.rb]
4138Style/BlockDelimiters :
4239 Description : Prefer braces for chaining. Mostly an aesthetical choice. Better to
4340 be consistent then.
@@ -80,9 +77,7 @@ Style/SymbolArray:
8077RSpec/MessageSpies :
8178 EnforcedStyle : receive
8279Style/Documentation :
83- Exclude :
84- - lib/puppet/parser/functions/**/*
85- - spec/**/*
80+ Exclude : [lib/puppet/parser/functions/**/*, spec/**/*]
8681Style/WordArray :
8782 EnforcedStyle : brackets
8883Performance/AncestorsInclude :
You can’t perform that action at this time.
0 commit comments