┌────────────────────────────────────────────────────────────────────────────┐
│                     _     ____           _   _   _                         │
│                    | |___|  _ \ _ __ ___| |_| |_(_) ___ _ __               │
│                 _  | / __| |_) | '__/ _ \ __| __| |/ _ \ '__|              │
│                | |_| \__ \  __/| | |  __/ |_| |_| |  __/ |                 │
│                 \___/|___/_|   |_|  \___|\__|\__|_|\___|_|                 │
│                                                                            │
│     Sublime Text Plugin for Prettier, the opinionated code formatter.     │
└────────────────────────────────────────────────────────────────────────────┘

## Getting started

### Install Prettier

If you've already installed Prettier, you're all set... otherwise:

    # npm (local)
    npm install --save-dev prettier

    # npm (globally)
    npm install --global prettier

    # or

    # pnpm (local)
    pnpm add -D prettier

    # pnpm (globally)
    pnpm add -g prettier

    # or

    # yarn (local)
    yarn add prettier --dev

    # yarn (globally)
    yarn global add prettier

### Usage

There are three ways to format code...

1. Command Palette

    "Ctrl/Cmd + Shift + P", then type "JsPrettier Format Code".

2. Context Menu

    Right-click the file view and select "JsPrettier Format Code".

3. Key Binding

    There is no default key binding for this plugin.

    To add a key binding, navigate to "Preferences" -> "Key Bindings...", and
    add an entry for "js_prettier". For example...

        { "keys": ["shift+alt+f"], "command": "js_prettier" }

    Change "shift+alt+f" with your preferred key combination.

## Issues

For additional help, including reporting issues, please visit the JsPrettier
home page at https://github.com/jonlabelle/SublimeJsPrettier.

## License

The MIT License (MIT)
Copyright (c) Jon LaBelle
