diff options
author | Bobby McDonald <BobbyMcWho@users.noreply.github.com> | 2019-07-18 13:11:41 -0400 |
---|---|---|
committer | Michael Herold <opensource@michaeljherold.com> | 2019-07-18 12:11:40 -0500 |
commit | f0faaca6acc69689aa208c4420c258506a0596af (patch) | |
tree | 84e43dde19e0968584c40c80f4d1d210fab53648 /.rubocop_todo.yml | |
parent | da9fd39a0e551e09c1441cb7453c969a4afbfd7f (diff) | |
download | hashie-f0faaca6acc69689aa208c4420c258506a0596af.tar.gz |
Add selective key-conflict warnings for Mash subclasses (#478)
In some cases, you want to be able to ignore Mash warnings for keys
that you know you aren't going to access via a method accessor, yet be
warned for other keys that you know you might want to access. This
change adds the ability to selectively ignore warnings for specific keys
instead of globally ignoring the warnings.
The change retains the original behavior as well, so if you call
`Mash.disable_warnings` without a value it will still globally ignore
the warnings.
Diffstat (limited to '.rubocop_todo.yml')
-rw-r--r-- | .rubocop_todo.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 4f87d3b..ab2db99 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,6 +1,6 @@ # This configuration was generated by # `rubocop --auto-gen-config` -# on 2019-03-22 11:21:24 -0400 using RuboCop version 0.52.1. +# on 2019-07-17 09:23:49 -0400 using RuboCop version 0.52.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new @@ -13,7 +13,7 @@ Metrics/AbcSize: # Offense count: 2 # Configuration parameters: CountComments. Metrics/ClassLength: - Max: 212 + Max: 221 # Offense count: 7 Metrics/CyclomaticComplexity: |