mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
cb9eb551c8
We had configured RuboCop to allow lines with up to 142 characters. This PR fixes a few of the worst offenders so we can bring that number down to 110.
28 lines
618 B
YAML
28 lines
618 B
YAML
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
|
|
|
|
# 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: 110
|