Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epicallan/purescript-prettier
PureScript bindings for prettier
https://github.com/epicallan/purescript-prettier
prettier purescript
Last synced: 3 months ago
JSON representation
PureScript bindings for prettier
- Host: GitHub
- URL: https://github.com/epicallan/purescript-prettier
- Owner: epicallan
- License: mit
- Created: 2017-06-25T14:07:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-11-16T02:25:15.000Z (about 3 years ago)
- Last Synced: 2024-10-09T21:12:12.894Z (3 months ago)
- Topics: prettier, purescript
- Language: PureScript
- Size: 8.79 KB
- Stars: 6
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PureScript bindings for prettier
# Usage
```purescript
import Text.Prettier (defaultOptions, format)format defaultOptions "const a=1" -- "const a = 1;\n"
```