We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The no_successive_maps rule (see #157 and #255) doesn't warn when using nested maps.
no_successive_maps
This triggers the warning:
_ = [ #{a => b, c => d}, #{a => b, c => d} % elvis: Found map update after map construction/update #{a => b, c => d}, #{a => b, c => d} ],
This doesn't:
_ = #{ x => [ #{a => b, c => d}, #{a => b, c => d} % expected a warning here; didn't get one #{a => b, c => d}, #{a => b, c => d} ] },
BUILD_DEPS = elvis_mk DEP_PLUGINS = elvis_mk ELVIS_VERSION = 3.0.1 dep_elvis_mk = git https://github.com/inaka/elvis.mk.git
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Description
The
no_successive_maps
rule (see #157 and #255) doesn't warn when using nested maps.To Reproduce
This triggers the warning:
This doesn't:
Additional Context
The text was updated successfully, but these errors were encountered: