-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrubocop.yml
More file actions
44 lines (42 loc) · 944 Bytes
/
rubocop.yml
File metadata and controls
44 lines (42 loc) · 944 Bytes
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
# https://docs.rubocop.org/
# https://github.com/rubocop/rubocop/blob/master/config/default.yml
#
# To use in a Rails app or ruby gem: create a .rubocop.yml in the root that contains:
#
# inherit_from:
# - https://raw.githubusercontent.com/code-and-effect/effective_developer/master/rubocop.yml
Metrics/AbcSize:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Max: 14
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Metrics/ParameterLists:
Max: 12
Metrics/PerceivedComplexity:
Max: 14
Style/Alias:
Enabled: false
Style/Documentation:
Enabled: false
Style/HashSyntax:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/MutableConstant:
Enabled: false
Style/StringConcatenation:
Enabled: false
Style/SymbolArray:
Enabled: false
Style/WordArray:
Enabled: false
AllCops:
Exclude:
- 'db/**/*_schema.rb'