forked from Optomatica/optobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
96 lines (70 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# inherit_from: ../.rubocop.yml
require:
- rubocop-rails
- rubocop-performance
Rails/DynamicFindBy:
Whitelist:
- find_by_id
AllCops:
TargetRubyVersion: 2.6
Exclude:
- 'node_modules/**/*'
- 'bin/*'
- 'db/seeds.rb'
- 'db/schema.rb'
- 'db/migrate/*'
Style/SymbolArray:
EnforcedStyle: brackets
Style/WordArray:
EnforcedStyle: brackets
Style/FrozenStringLiteralComment:
EnforcedStyle: never
Layout/LineLength:
Enabled: false
Max: 160
Metrics/MethodLength:
Enabled: false
Max: 20
Exclude:
- 'db/migrate/*.rb'
Style/EmptyMethod:
EnforcedStyle: expanded
Style/RedundantReturn:
AllowMultipleReturnValues: true
Enabled: false
Style/Documentation:
Enabled: false
Metrics/BlockLength:
Exclude:
- 'lib/tasks/*.rake'
- 'config/routes.rb'
Metrics/AbcSize:
Enabled: false
Metrics/PerceivedComplexity:
Enabled: false
Naming/HeredocDelimiterNaming:
Enabled: false
Metrics/ClassLength:
Exclude:
Naming/MethodParameterName:
Enabled: false
Rails/HasManyOrHasOneDependent:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Rails/CreateTableWithTimestamps:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Lint/RescueException:
Enabled: false
Rails/TimeZone:
Enabled: false
Style/NumericLiterals:
MinDigits: 7
Style/HashEachMethods:
Enabled: false
Style/HashTransformKeys:
Enabled: false
Style/HashTransformValues:
Enabled: false