-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.rubocop.yml
More file actions
41 lines (32 loc) · 707 Bytes
/
.rubocop.yml
File metadata and controls
41 lines (32 loc) · 707 Bytes
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
40
41
inherit_gem:
rubocop-shopify: rubocop.yml
require:
- rubocop-performance
AllCops:
TargetRubyVersion: 2.7
NewCops: enable
# Metrics/BlockLength:
# Exclude:
# - "**/*_spec.rb"
# - "**/spec/**/*.rb"
# Metrics/AbcSize:
# Max: 18
# Exclude:
# - "**/*_spec.rb"
# - "**/spec/**/*.rb"
# Metrics/ModuleLength:
# Exclude:
# - "**/*_spec.rb"
# - "**/spec/**/*.rb"
# RSpec/MultipleExpectations:
# Exclude:
# - "**/requests/**/*_spec.rb"
# RSpec/AnyInstance:
# Exclude:
# - spec/support/**.rb
# Style/AccessorGrouping:
# EnforcedStyle: separated
# Style/SymbolArray:
# EnforcedStyle: brackets
# Style/AccessModifierDeclarations:
# EnforcedStyle: inline