forked from thoughtbot/json_matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.rubocop.yml
More file actions
42 lines (35 loc) · 770 Bytes
/
Copy path.rubocop.yml
File metadata and controls
42 lines (35 loc) · 770 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
inherit_from:
- '.thoughtbot.rubocop.yml'
Style/BlockDelimiters:
Enabled: true
Exclude:
- 'test/**/*_test.rb'
- 'spec/**/*_spec.rb'
Style/BracesAroundHashParameters:
Enabled: true
Exclude:
- 'test/**/*_test.rb'
- 'spec/**/*_spec.rb'
- 'spec/factories.rb'
Style/SymbolArray:
Enabled: false
Style/TrailingCommaInArrayLiteral:
Enabled: true
Exclude:
- 'test/**/*_test.rb'
- 'spec/**/*_spec.rb'
- 'spec/factories.rb'
Style/TrailingCommaInHashLiteral:
Enabled: true
Exclude:
- 'test/**/*_test.rb'
- 'spec/**/*_spec.rb'
- 'spec/factories.rb'
Layout/IndentHeredoc:
Enabled: false
Layout/IndentHash:
Enabled: true
Exclude:
- 'test/**/*_test.rb'
- 'spec/**/*_spec.rb'
- 'spec/factories.rb'