-
Notifications
You must be signed in to change notification settings - Fork 605
Expand file tree
/
Copy path.rubocop.yml
More file actions
81 lines (60 loc) · 1.47 KB
/
.rubocop.yml
File metadata and controls
81 lines (60 loc) · 1.47 KB
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
inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 2.0
NewCops: enable
SuggestExtensions: false
# Prevents Ruby 3.1 incompatibility error. You can enable this cop when Ruby 2.4 support is dropped.
# See https://github.com/rubocop/rubocop/issues/10258
Layout/BlockAlignment:
Enabled: false
Style/NumericPredicate:
Enabled: false
Layout/HeredocIndentation:
Enabled: false
Lint/EmptyClass:
Enabled: false
Style/EmptyClassDefinition:
Enabled: false
Naming/MethodName:
Exclude:
- "spec/code_object_spec.rb"
- "lib/pry/method.rb"
- "lib/pry/wrapped_module.rb"
- "lib/pry/code.rb"
Metrics/ModuleLength:
Exclude:
- "lib/pry/config/behavior.rb"
Layout/CommentIndentation:
Exclude:
- "spec/fixtures/example_nesting.rb"
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
Style/ClassAndModuleChildren:
Exclude:
- "spec/fixtures/example_nesting.rb"
Style/SingleLineMethods:
Exclude:
- "spec/method_spec.rb"
- "spec/fixtures/example_nesting.rb"
Style/StringLiterals:
Enabled: false
Layout/LineLength:
Max: 90
Bundler/OrderedGems:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/Documentation:
Enabled: false
Style/CommentedKeyword:
Exclude:
- "spec/fixtures/example_nesting.rb"
Gemspec/RequiredRubyVersion:
Enabled: false
Style/ModuleFunction:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: true
EnforcedStyle: always
Exclude:
- "spec/fixtures/example_nesting.rb"