forked from voxpupuli/beaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubocop.yml
39 lines (32 loc) · 856 Bytes
/
rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
# this file is the base rubocop config for beaker + all beaker plugins
require:
- rubocop-performance
- rubocop-rake
- rubocop-rspec
AllCops:
NewCops: enable
DisplayCopNames: true
ExtraDetails: true
DisplayStyleGuide: true
TargetRubyVersion: '2.7'
Exclude:
- vendor/**/*
- .vendor/**/*
# this currently doesn't work with the way we handle our secrets
Gemspec/RequireMFA:
Enabled: false
# current Vox Pupuli default is to use `add_development_dependency` in the gemspec
Gemspec/DevelopmentDependencies:
Enabled: false
Style/TrailingCommaInHashLiteral:
Enabled: True
EnforcedStyleForMultiline: consistent_comma
Style/TrailingCommaInArrayLiteral:
Enabled: True
EnforcedStyleForMultiline: consistent_comma
Style/TrailingCommaInArguments:
Enabled: True
EnforcedStyleForMultiline: comma
Metrics:
Enabled: false