Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.16 KB

README.md

File metadata and controls

37 lines (27 loc) · 1.16 KB

purescript-suggest

Command line tool (and library) to apply the suggested fixes from psc for warnings, such as removing redundant imports, or making imports explicit.

Installation

To install ps-suggest globally:

npm install -g purescript-suggest

Usage

Pipe the JSON compiler output to stdin of ps-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

Warning

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. As always it's a good idea to commit your code periodically.

Library usage

Install purescript-suggest via bower and use something like Publish.applySuggestions, which takes already parsed errors ala purescript-psa.