diff options
author | Abinoam P. Marques Jr <abinoam@gmail.com> | 2017-09-24 23:23:14 -0300 |
---|---|---|
committer | Abinoam P. Marques Jr <abinoam@gmail.com> | 2017-09-25 06:51:00 -0300 |
commit | 75e5dfc416b7a0257e7f67d627f4edb314f2f8ef (patch) | |
tree | bd29d0e511d168dab94fcd29508829fb2decd3d1 /.rubocop.yml | |
parent | 6884e9696848ef3687338d53e3449787239d9168 (diff) | |
download | highline-75e5dfc416b7a0257e7f67d627f4edb314f2f8ef.tar.gz |
Whitelist heredoc indenting
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index ccbd4dd..45d8bec 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -70,3 +70,12 @@ Style/MethodMissing: # SupportedStyles: percent, brackets Style/SymbolArray: EnforcedStyle: brackets + +# Cop supports --auto-correct. +# Configuration parameters: EnforcedStyle, SupportedStyles. +# SupportedStyles: auto_detection, squiggly, active_support, powerpack, unindent +Layout/IndentHeredoc: + Exclude: + - 'examples/page_and_wrap.rb' + - 'highline.gemspec' + - 'test/acceptance/acceptance.rb' |