-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
[Chore] Add weeder check #156
Conversation
flake.nix
Outdated
@@ -19,6 +19,10 @@ | |||
url = "github:Kleidukos/get-tested/v0.1.6.0"; | |||
flake = false; | |||
}; | |||
weeder-src = { | |||
url = "github:ocharles/weeder"; | |||
flake = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In fact, it is actually a flake :pled:
Sadly, it doesn't expose executable
Sorry for late review, but recently there appeared https://github.com/NorfairKing/weeder-nix which is now mentioned in https://github.com/ocharles/weeder README. Can we use it to simplify the code written in this PR? |
@Sereja313 or @rvem could you please look into it? ⬆️ |
The current solution is based on the |
Problem: We want to be able to check our Haskell applications for dead code. This can be done using weeder. Solution: Add weeder check to our overlay.
e90804b
to
1e48c18
Compare
Problem: We want to be able to check our Haskell applications for dead code. This can be done using weeder.
Solution: Add weeder check to our overlay.