stan
stan copied to clipboard
🕵️ Haskell STatic ANalyser
The release workflow has been broken by removal of `set-env`, `add-path` commands from Github Actions: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ This changes replaced the removed commands with equivalent ones and upgrade dependency that where...
Usages of these functions have the problems described in the following blog post: * https://www.snoyman.com/blog/2016/12/beware-of-readfile/ And suggest using `ByteString.readFile` + `decodeUtf8`
Proposed here: https://github.com/kowainik/stan/issues/44#issuecomment-640856753 We want to implement an ability to specify when Stan should exit with non-zero code. This is useful for running Stan on CI. But since different projects...
Hey! I am trying to get stan tests running in nixpkgs. As dependencies we use stackage-nightly + newest versions from hackage if not on stackage. This conforms to the cabal...
In the form: ``` path/to/file.hs:line:col-line2:col2 stuff ``` There are two questions: 1. What would the the CLI option name? 🤔 2. what to put into "stuff"?
I'm using Happy to generate `.hs` files from `.y` files, and stan reports errors in the `.hs` file (notably, Happy-generated files use `(!!)`) that I would like to exclude from...
We discussed this with @vrom911 and decided that it would be nice to suggest more efficient string types in the following places: 1. Data type fields. 2. Function return arguments.
Currently, we have to pattern match a lot on children, or check if any of the children satisfy some predicate. A list is not always reasonable representation (for example, we...