forked from ifmeorg/ifme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
48 lines (36 loc) · 933 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
40
41
42
43
44
45
46
47
48
AllCops:
TargetRubyVersion: 2.3
Exclude:
- 'bin/**/*'
- 'db/**/*'
- 'config/**/*'
- 'spec/**/*'
- 'client/node_modules/**/*'
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
Style/MixinUsage:
Enabled: false
Layout/EmptyLineAfterMagicComment:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/AbcSize:
Enabled: false