diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-01-26 08:49:13 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-01-26 10:46:13 -0800 |
commit | 076dea67488fd5b8dfdc4761b92e80e4a4041fc1 (patch) | |
tree | 2d3a82280e97e1c04be31395826e88e3a4e7e58a /.rubocop.yml | |
parent | f27f8f1781695d557b71298d483d440439671936 (diff) | |
download | chef-076dea67488fd5b8dfdc4761b92e80e4a4041fc1.tar.gz |
Fix an interpolation mistake in an error message + turn on the copinterpolation
Make sure we avoid these in the future. We should probably turn this on in Chefstyle.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index eb41ed78fa..a02da9fa32 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -22,6 +22,11 @@ Lint/ShadowingOuterLocalVariable: Enabled: false Lint/IneffectiveAccessModifier: Enabled: false +Lint/InterpolationCheck: + Enabled: true + Exclude: + - 'spec/unit/property_spec.rb' + - 'spec/functional/shell_spec.rb' # set additional paths Chef/Ruby/UnlessDefinedRequire: |