forked from coinbase/geoengineer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
61 lines (44 loc) · 1.04 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
AllCops:
Exclude:
- 'vendor/**/*'
- 'examples/*'
- 'geoengineer.gemspec'
- 'lib/geoengineer/templates/*'
Style/StringLiterals:
Enabled: false
Style/MethodCallParentheses:
Enabled: false
# Given that GeoEngineer is a DSL which encourages similarity to multiline blocks this is disabled
Style/BlockDelimiters:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false
# Increase these a bit
Metrics/LineLength:
Max: 100 # from 80
Metrics/MethodLength:
CountComments: false # count full line comments?
Max: 15 # from 10
Style/Lambda:
Enabled: false
Style/BracesAroundHashParameters:
EnforcedStyle: braces
Style/RedundantSelf:
Enabled: false
Style/RedundantSelf:
Enabled: false
Style/MethodMissing:
Enabled: false
Lint/UnusedBlockArgument:
Enabled: false
Style/WordArray:
Enabled: false
Metrics/ClassLength:
CountComments: false # count full line comments?
Max: 250
Style/FrozenStringLiteralComment:
Enabled: false
Style/DoubleNegation:
Enabled: false