-
Notifications
You must be signed in to change notification settings - Fork 742
/
.rubocop.yml
82 lines (61 loc) · 1.42 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
require:
- rubocop-rails
- rubocop-performance
- rubocop-rspec
- rubocop-capybara
- rubocop-factory_bot
AllCops:
NewCops: enable
TargetRubyVersion: 3.1.4
Exclude:
- 'bin/**/*'
- 'db/**/*'
- 'config/**/*'
- 'spec/**/*'
- 'client/node_modules/**/*'
- 'vendor/**/*'
- 'Gemfile'
Style/Documentation:
Enabled: false
Rails:
Enabled: true
# There is a bug in the Rubocop 0.48 parser that causes it to incorrectly
# complain about parentheses around blocks used with scopes. This should be
# removed once it is possible to upgrade to 0.49 or above.
Lint/AmbiguousBlockAssociation:
Enabled: false
# Rubocop should be used for style guide adherence, not testing for code smell
Rails/OutputSafety:
Enabled: false
Rails/SkipsModelValidations:
Enabled: false
Rails/InverseOf:
Enabled: false
Rails/HasManyOrHasOneDependent:
Enabled: false
Rails/HelperInstanceVariable:
Enabled: false
Style/MixinUsage:
Enabled: false
Layout/EmptyLineAfterMagicComment:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/AbcSize:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Layout/LineLength:
AllowedPatterns: ['\A#']
Metrics/ClassLength:
Enabled: false