forked from thoughtbot/factory_bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.rubocop.yml
35 lines (29 loc) · 825 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
inherit_from:
- https://raw.githubusercontent.com/thoughtbot/guides/master/style/ruby/.rubocop.yml
AllCops:
TargetRubyVersion: 2.3
Exclude:
- 'gemfiles/*'
- 'tmp/**/*'
Metrics/BlockLength:
CountComments: true
Max: 25
ExcludedMethods: []
Exclude:
- "spec/**/*"
- '*.gemspec'
Style/SymbolArray:
EnforcedStyle: brackets
Style/FormatStringToken:
Enabled: false
Style/MethodMissing:
Exclude:
- 'lib/factory_bot/decorator.rb'
- 'lib/factory_bot/decorator/invocation_tracker.rb'
- 'lib/factory_bot/definition_proxy.rb'
- 'lib/factory_bot/evaluator.rb'
# TODO: gradually bring this down to 80 as we fix files
# Let's not open a big PR to fix all of these at once -
# we can fix gradually if we happen to be editing a file that has a violation
Metrics/LineLength:
Max: 142