-
Notifications
You must be signed in to change notification settings - Fork 1
/
.rubocop.yml
107 lines (82 loc) · 2.62 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
105
106
AllCops:
NewCops: enable
# Suppress complaints about post-2.0 syntax
TargetRubyVersion: 3.0
# Exclude generated files
Exclude:
- 'bin/**/*'
- 'db/**/*'
- 'script/**/*'
- 'vendor/**/*'
- 'app/controllers/dua_controller.rb'
- 'lib/dua_mixin.rb'
# 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
Layout/LineLength:
Max: 150
Metrics/ClassLength:
Max: 200
Metrics/BlockLength:
Max: 40
Metrics/MethodLength:
Max: 20
Metrics/AbcSize:
Exclude:
- 'app/controllers/application_controller.rb'
Naming/FileName:
Exclude:
- 'config/deploy/*'
# Just because something looks like an accessor doesn't mean it is one
Naming/PredicateName:
Exclude:
- 'app/controllers/application_controller.rb'
# Confusing and weird
Naming/VariableNumber:
Enabled: False
# We meant to do that
Naming/MemoizedInstanceVariableName:
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