Skip to content

Commit a83a4f8

Browse files
Apply Yamlfix format changes.
1 parent 7c37c44 commit a83a4f8

File tree

1 file changed

+19
-24
lines changed

1 file changed

+19
-24
lines changed

.rubocop.yml

Lines changed: 19 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,40 @@
11
---
22
plugins:
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
88
AllCops:
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'
2726
Layout/LineLength:
2827
Description: People have wide screens, use them.
2928
Max: 200
3029
RSpec/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]
3533
RSpec/HookArgument:
3634
Description: Prefer explicit :each argument, matching existing module's style
3735
EnforcedStyle: each
3836
RSpec/DescribeSymbol:
39-
Exclude:
40-
- spec/unit/facter/**/*.rb
37+
Exclude: [spec/unit/facter/**/*.rb]
4138
Style/BlockDelimiters:
4239
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to
4340
be consistent then.
@@ -80,9 +77,7 @@ Style/SymbolArray:
8077
RSpec/MessageSpies:
8178
EnforcedStyle: receive
8279
Style/Documentation:
83-
Exclude:
84-
- lib/puppet/parser/functions/**/*
85-
- spec/**/*
80+
Exclude: [lib/puppet/parser/functions/**/*, spec/**/*]
8681
Style/WordArray:
8782
EnforcedStyle: brackets
8883
Performance/AncestorsInclude:

0 commit comments

Comments
 (0)