This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
forked from CDLUC3/stash
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.rubocop.yml
104 lines (79 loc) · 2.74 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
97
98
99
100
101
102
103
104
AllCops:
# Suppress complaints about post-2.0 syntax
TargetRubyVersion: 2.4
# Allow one line around block body (Layout/EmptyLines will still disallow two or more)
Layout/EmptyLinesAroundBlockBody:
Enabled: false
# Allow one line around class body (Layout/EmptyLines will still disallow two or more)
Layout/EmptyLinesAroundClassBody:
Enabled: false
# Allow one line around module body (Layout/EmptyLines will still disallow two or more)
Layout/EmptyLinesAroundModuleBody:
Enabled: false
# Make indents consistent regardless of the lengths of variables and method names and whatnot
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
# Produces monsters
Layout/MultilineOperationIndentation:
Enabled: false
# Reasonable line-length check; it's too easy for the cure to be worse than the disease
Metrics/LineLength:
Max: 150
# AbcSize is very low at 15 and often catches perfectly readable methods because of two small if statements
Metrics/AbcSize:
Max: 30
# The default MethodLength can flag methods which essentially do nothing, simply because they invoke another method with several parameters
Metrics/MethodLength:
Max: 20
Exclude:
- '**/spec/**/*.rb'
# reasonable complexity
Metrics/PerceivedComplexity:
Max: 10
# Confusing and weird
Naming/VariableNumber:
Enabled: False
# We meant to do that
Naming/MemoizedInstanceVariableName:
Enabled: False
# It works in context, trust us
Naming/UncommunicativeMethodParamName:
Enabled: False
# Do what's readable in the context you're in
Style/AccessModifierDeclarations:
Enabled: false
# 👎 to cultural imperialism
Style/AsciiComments:
Enabled: false
# Seriously?
Style/CommentedKeyword:
Enabled: False
# Disable problematic module documentation check (see https://github.com/bbatsov/rubocop/issues/947)
Style/Documentation:
Enabled: false
# Adding more line noise to format strings will not improve them
Style/FormatStringToken:
Enabled: false
# Putting '# frozen_string_literal: true' everywhere does not make the world a better place
Style/FrozenStringLiteralComment:
Enabled: false
# `foo.positive?` is cute, but it's not actually more readable than `foo > 0`
Style/NumericPredicate:
Enabled: false
# The semantics of `foo&.bar` are a lot less interchangeable with `foo && foo.bar` than RuboCop thinks
Style/SafeNavigation:
Enabled: false
# Requiring the lambda() method just makes wordy calls wordier
Style/Lambda:
EnforcedStyle: literal
# Unclear why it's a good idea to give parameters semantically meaningless names
Style/SingleLineBlockParams:
Enabled: false
# ############################################################
# Special cases for specs
Metrics/BlockLength:
Exclude:
- '**/spec/**/*.rb'
Metrics/ModuleLength:
Exclude:
- '**/spec/**/*.rb'