miniprettier

Zero config plugin to run Prettier in Atom

duailibe

710

3

1.0.1

MIT

GitHub

miniprettier

A zero config plugin for running Prettier in Atom. It was inspired by @t9md's mprettier but changed to suit my needs.

How to use?

Run miniprettier:format or ctrl+alt+f.

It will always run Prettier on the current file even if the file is ignored in .prettierignore.

Which Prettier it uses

miniprettier will follow this order to find the Prettier version to use:

Prettier options

If miniprettier can't find Prettier in the current project, it will use options set in config.cson.

  miniprettier:
    options:
      singleQuote: true
      printWidth: 100
      trailingComma: "all"

(see Prettier's available options)

Prettier will use the project's own configuration (via prettier.resolveConfig). If the project doesn't have any options set, it probably means the project uses Prettier's default and miniprettier will not pass any options.

miniprettier doesn't try to guess which parser to use or anything, it relies on Prettier's own inference based on the file extension.

Credits

Thanks to @t9md for inspiration in mprettier.

License

MIT