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
within
modules: {as: }
We want to gradually become consistent with our naming of Data.List.NonEmpty, so we create an hlint rule:
Data.List.NonEmpty
hlint
- modules: - name: [Data.List.NonEmpty] as: NE
I run hlint on our codebase to get all the currently failing examples, and I create a within to ignore them:
- modules: - name: [Data.List.NonEmpty] as: NE within: [ ... ]
But now it starts complaining about importing Data.List.NonEmpty at all. It seems like within is causing it to ignore the as: key.
as:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We want to gradually become consistent with our naming of
Data.List.NonEmpty
, so we create anhlint
rule:I run
hlint
on our codebase to get all the currently failing examples, and I create awithin
to ignore them:But now it starts complaining about importing
Data.List.NonEmpty
at all. It seems likewithin
is causing it to ignore theas:
key.The text was updated successfully, but these errors were encountered: