forked from jnbt/candy_check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
40 lines (40 loc) · 899 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
AllCops:
TargetRubyVersion: 2.6
Exclude:
- 'spec/support/*'
- 'bin/**/*'
- 'vendor/**/*'
Style/Documentation:
Enabled: false
Style/FrozenStringLiteralComment:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/NumericPredicate:
Enabled: false
Lint/UnifiedInteger:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
default: ()
"%i": ()
"%w": ()
Metrics/BlockLength:
Exclude:
- 'spec/**/*'
- '*.gemspec'
Security/MarshalLoad:
Exclude:
- 'lib/candy_check/play_store/discovery_repository.rb'
Style/DateTime:
Enabled: false
Style/Encoding:
Enabled: false
Style/ExpandPathArguments:
Enabled: false
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: comma