#formatting #formatter #typescript #javascript #dprint-plugin

dprint-plugin-deno-base

Helper code for creating a formatting plugin for dprint with deno_core

2 releases

0.0.2 Jul 14, 2023
0.0.1 Jul 14, 2023

#13 in #dprint-plugin

35 downloads per month

MIT license

12KB
245 lines

dprint-plugin-prettier

CI

Wrapper around prettier in order to use it as a dprint plugin.

Install

  1. Install dprint
  2. Follow instructions at https://github.com/dprint/dprint-plugin-prettier/releases/

Configuration

See Prettier's configuration here. Specify using the "API Override" column.

{
  // ...etc...
  "prettier": {
    "trailingComma": "all",
    "singleQuote": true,
    "proseWrap": "always",
    // enable prettier-plugin-jsdoc
    "plugin.jsDoc": true
  }
}

File extension specific configuration

Add the file extension to the start of the configuration option. For example:

{
  // ...etc...
  "prettier": {
    "singleQuote": true,
    // use double quotes in js files
    "js.singleQuote": false,
    // use double quotes in ts files
    "ts.singleQuote": false
  }
}

Included Prettier Plugins

Temporarily removed, but will be added back soon:

See issue #55 for the new plugin system.

Why Does This Exist?

The main reason this exists is to be able to use Prettier with dprint's CLI. That way, you can format with all the plugins that dprint supports, still use Prettier, and only have to run dprint fmt.

Additionally it's much faster. This plugin will format files in parallel and you can take advantage of the speed of dprint's incremental formatting if enabled.

Dependencies

~99MB
~2M SLoC