stan
stan copied to clipboard
🕵️ Haskell STatic ANalyser
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.5 to 3.0.7. Release notes Sourced from actions/cache's releases. v3.0.7 What's Changed Fix for the download stuck problem has been added in actions/cache for users who were...
If I run stan over the stack codebase it reports that is using all of the `.cabal` files, including those in test: ``` > stan report ... ⓘ Using the...
Hello 👋 My name is Nick, I am one of the architects here at GitHub 👋 lovely to meet you all 👋 Firstly, love what you are doing here 💯...
https://hackage.haskell.org/package/safe-0.3.19/docs/Safe-Foldable.html#v:maximumByMay
I was wondering if it is possible to to suppress the output other than the observations e.g. to not get the configuration output and ignored observation ID output? Thanks!
I want to disable an inspection for a specific line or a function. For example, the user could do this with a comment such as: ``` -- stan-disable-next-line STAN-0006 mapCyclic...
These instances truncate characters. We already have an inspection for `ByteString.Char8.pack` and the relevant mechanism. So it should be pretty straightforward to implement this one as well.
How would you recommend to use stan as a continuous integration test? Assuming this is correct, could we add such snippets to the README? ```yaml - run: cabal v2-install stan...
If you define a typeclass like `MonadBlah`, it should have `Monad` in its context: ```haskell class Monad m => MonadBlah m where ```