-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy path.rubocop.yml
More file actions
53 lines (39 loc) · 814 Bytes
/
.rubocop.yml
File metadata and controls
53 lines (39 loc) · 814 Bytes
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
inherit_from: .rubocop_todo.yml
Style/HashSyntax:
EnforcedStyle: hash_rockets
SupportedStyles:
- ruby19
- hash_rockets
Style/StringLiterals:
EnforcedStyle: single_quotes
SupportedStyles:
- single_quotes
- double_quotes
Style/RegexpLiteral:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Metrics/BlockLength:
Max: 100
Exclude:
- spec/**/*
Lint/NestedMethodDefinition:
Enabled: false
Layout/SpaceAroundOperators:
Enabled: false
Layout/ClosingParenthesisIndentation:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/CommentedKeyword:
Exclude:
- lib/**/*
Lint/LiteralAsCondition:
Enabled: false
Style/SymbolArray:
Enabled: false
Security/YAMLLoad:
Exclude:
- spec/support/obfuscation.rb