replace tabs in Rubocop config with spaces

YAML does not permit tabs and many parsers will error when loading a tab-indented file - http://www.yaml.org/faq.html
pull/268/head
Thomas McDonald 8 years ago committed by GitHub
parent d6d9a46981
commit 802f53a10a

@ -2,29 +2,29 @@
# Enabled: true
AllCops:
TargetRubyVersion: 2.3
Include:
- '**/Rakefile'
- '**/config.ru'
- '**/Gemfile'
TargetRubyVersion: 2.3
Include:
- '**/Rakefile'
- '**/config.ru'
- '**/Gemfile'
Metrics/LineLength:
Max: 120
Max: 120
Style/Documentation:
Enabled: false
Enabled: false
Style/DotPosition:
EnforcedStyle: trailing
EnforcedStyle: trailing
Style/FrozenStringLiteralComment:
Enabled: false
Enabled: false
Style/Lambda:
Enabled: false
Enabled: false
Style/MultilineMethodCallIndentation:
EnforcedStyle: indented
EnforcedStyle: indented
Style/TrailingUnderscoreVariable:
Enabled: false
Enabled: false

Loading…
Cancel
Save