forked from jcraigk/phishin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
80 lines (79 loc) · 1.59 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
require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
AllCops:
TargetRubyVersion: 2.6.6
Exclude:
- bin/*
- db/**/*
- vendor/**/*
- lib/tasks/*
- app/controllers/playlists_controller.rb # TODO: Refactor
Layout/EmptyLineAfterGuardClause:
Enabled: false
Layout/EmptyLineAfterMagicComment:
Enabled: false
Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true
Layout/LineLength:
Max: 100
Layout/SpaceAroundMethodCallOperator:
Enabled: true
Lint/DeprecatedOpenSSLConstant:
Enabled: true
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Metrics/BlockLength:
Exclude:
- spec/**/*
- config/routes.rb
Metrics/ClassLength:
Max: 250
Metrics/MethodLength:
Exclude:
- spec/support/feature_helpers.rb
Metrics/ModuleLength:
Max: 250
RSpec/DescribeClass:
Exclude:
- spec/features/**/*
RSpec/ExampleLength:
Exclude:
- spec/features/**/*
RSpec/MultipleExpectations:
Exclude:
- spec/features/**/*
Rails/Exit:
Enabled: false
Rails/HttpPositionalArguments:
Enabled: false
RSpec/ImplicitSubject:
EnforcedStyle: single_statement_only
Rails/Output:
Enabled: false
Rails/OutputSafety:
Enabled: false
RSpec/NestedGroups:
Max: 4
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false
Style/ExponentialNotation:
Enabled: true
Style/FormatStringToken:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: false
Style/MissingRespondToMissing:
Exclude:
- app/services/**/*
Style/SlicingWithRange:
Enabled: true