forked from railsadminteam/rails_admin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.rubocop.yml
80 lines (58 loc) · 1.35 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
inherit_from: .rubocop_todo.yml
AllCops:
Exclude:
- 'spec/dummy_app/bin/**/*'
- 'spec/dummy_app/db/schema.rb'
- 'spec/dummy_app/tmp/**/*'
- 'vendor/bundle/**/*'
Metrics/AbcSize:
Max: 69.98 # TODO: Lower to 15
Metrics/BlockNesting:
Max: 3
Metrics/ClassLength:
CountComments: false
Max: 120 # TODO: Lower to 100
Metrics/CyclomaticComplexity:
Max: 12 # TODO: Lower to 6
Metrics/LineLength:
AllowURI: true
Enabled: false
Metrics/MethodLength:
CountComments: false
Max: 29 # TODO: Lower to 15
Metrics/ModuleLength:
Max: 164 # TODO: Lower to 100
Metrics/ParameterLists:
Max: 8 # TODO: Lower to 4
CountKeywordArgs: true
Metrics/PerceivedComplexity:
Max: 14 # TODO: Lower to 7
Style/AccessModifierIndentation:
EnforcedStyle: outdent
Style/CollectionMethods:
PreferredMethods:
map: 'collect'
reduce: 'inject'
find: 'detect'
find_all: 'select'
Style/Documentation:
Enabled: false
Style/DotPosition:
EnforcedStyle: trailing
Style/DoubleNegation:
Enabled: false
Style/EachWithObject:
Enabled: false
Style/Encoding:
Enabled: false
Style/FileName:
Exclude:
- 'lib/rails_admin/bootstrap-sass.rb'
Style/Lambda:
Enabled: false
Style/RaiseArgs:
EnforcedStyle: compact
Style/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Style/TrailingComma:
EnforcedStyleForMultiline: 'comma'