-
Notifications
You must be signed in to change notification settings - Fork 80
/
.rubocop.yml
58 lines (42 loc) · 942 Bytes
/
.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
---
require:
- rubocop-minitest
- rubocop-rake
inherit_from: .rubocop_todo.yml
inherit_gem:
rubocop-shopify: rubocop.yml
AllCops:
NewCops: enable
Exclude:
- test/allow_list_bench.rb
Layout/LineLength:
Exclude:
- examples/**/*.rb
Lint/SuppressedException:
Exclude:
- examples/**/*.rb
- test/adapters/net_http_test.rb
- test/helpers/circuit_breaker_helper.rb
- test/helpers/resource_helper.rb
- test/protected_resource_test.rb
Minitest/AssertPredicate:
Enabled: false
Minitest/MultipleAssertions:
Enabled: false
Minitest/RefuteFalse:
Enabled: false
Naming/InclusiveLanguage:
Enabled: false
Style/GlobalVars:
Exclude:
- ext/semian/extconf.rb
Style/NumericLiteralPrefix:
EnforcedOctalStyle: zero_only
Style/RedundantConstantBase:
Enabled: false
Style/SingleLineMethods:
Enabled: false
Style/SpecialGlobalVars:
Enabled: false
Minitest/AssertInDelta:
Enabled: false