Apply PureScript compiler suggestions to fix warnings
npm install purescript-suggestCommand line tool (and library) to apply the suggested fixes from psc for warnings, such as
removing redundant imports, or making imports explicit.
This is a tool that modifies your source code in place by design. Errors in
this code, or any issues with the warnings passed in, could result in the deletion
of your precious source code.
COMMIT EARLY COMMIT OFTEN.
To install ps-suggest globally:
```
npm install -g purescript-suggest
. You probably want to use
psa, possibly with a warning stash and almost certainly filtering out library
errors. This also gives you the chance to choose which codes to replace.To check changes that will be applied:
`
pulp build --stash --censor-lib --json-errors 2>&1 | ps-suggest --list
`To apply the changes to all affected files:
`
pulp build --stash --censor-lib --json-errors 2>&1 | ps-suggest --apply
`Library usage
Install
purescript-suggest via bower and use something like Publish.applySuggestions, which takes
already parsed errors ala purescript-psa`.