prettier-standard
Prettier and standard brought together!
Last updated 5 years ago by sheerun .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install prettier-standard 
SYNC missed versions from official npm registry.

(✿◠‿◠) prettier-standard Build Status version Modern Node

prettier and standard brought together

While standard is a linter, prettier-standard is a formatter. You don't have to fix any warnings anymore :relieved:

Warning: Most recent version of prettier-standard is compatible with eslint >= 5 and node >= 8. If you're looking for support for older versions of eslint or node please npm install --save prettier-standard@8

Installation

yarn add --dev prettier-standard

If you're using the npm: npm install --save-dev prettier-standard.

You can also install globally with npm install -g prettier-standard

Usage

Prettier and standard brought together!

Usage
  $ prettier-standard [<glob>]

Options
  --since   Format files changed since given revision
  --changed Format only changed or added lines
  --check   Do not format, just check formatting
  --parser  Force parser to use (default: babel)

Examples
  $ prettier-standard '**/*.{js,css}'
  $ prettier-standard --since HEAD
  $ prettier-standard --changed
  $ echo 'const {foo} = "bar";' | prettier-standard
  $ echo '.foo { color: "red"; }' | prettier-standard --parser css

Warning: --changed flag should be considered experimental as prettier has issues with range formatting:

Usage

Typically you'll use this in your npm scripts (or package scripts):

{
  "scripts": {
    "format": "prettier-standard '**/*'"
  }
}

We also encourage to use husky and lint-staged. You can configure it as follows:

{
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "linters": {
      "**/*": ["prettier-standard", "git add"]
    }
  }
}

NOTE: Unlike prettier this package simplifies your workflow by making --write flag a default, and allowing for passing code to stdin without additional --stdin flag.

Vim

It's probably best to use ale plugin. It supports multiple fixers, including prettier-standard:

Plug 'w0rp/ale'
let g:ale_fixers = {'javascript': ['prettier_standard']}
let g:ale_linters = {'javascript': ['']}
let g:ale_fix_on_save = 1

Sublime Text 3

It's possible to use 'prettier-standard' with Sublime Text 3.

  1. Install 'prettier-standard' globally according to the installation instructions above.
  2. Find the location of your installed executable file. On a unix based system (like MacOS):
$ which prettier-standard
  1. Copy the location. (e.g. /usr/local/bin/prettier-standard)
  2. Install SublimeJsPrettier according to their installation instructions.
  3. Open SublimeJsPrettier's default settings in Sublime and copy the line: "prettier_cli_path": ""
  4. Open SublimeJsPrettier's user settings in Sublime and add the line with the correct location of the 'prettier-standard' executable.
{
  "prettier_cli_path": "/usr/local/bin/prettier-standard"
}

You can now use 'prettier-standard' in Sublime Text 3 by opening the Command Palette (super + shift + p) and typing JsPrettier: Format Code.

Customizing

You can use .prettierrc for overriding some options, e.g to use semistandard:

{
  "semi": true
}

Ignoring Files

You can use .prettierignore file for ignoring any files to format, e.g:

dist
.next
**/*.ts

API

prettier-standard exposes the same API as prettier: https://prettier.io/docs/en/api.html

It also exposes one additional method that works similarly to its CLI:

run(cwd, config)

  • cwd - path where to execute prettier-standard
  • config - object configuring execution
    • patterns - patterns to use for formatting files (array of strings)
    • check - whether to check instead of format files (boolean, default: false)
    • onProcess - callback that is called for each processed file matching pattern: { file, formatted, check, runtime }

LICENSE

MIT

Current Tags

  • 14.0.0-beta.5                                ...           beta (5 years ago)
  • 16.4.1                                ...           latest (4 years ago)

64 Versions

  • 16.4.1                                ...           4 years ago
  • 16.4.0                                ...           4 years ago
  • 16.3.0                                ...           5 years ago
  • 16.2.1                                ...           5 years ago
  • 16.2.0                                ...           5 years ago
  • 16.1.0                                ...           5 years ago
  • 16.0.0                                ...           5 years ago
  • 15.0.1                                ...           5 years ago
  • 15.0.0                                ...           5 years ago
  • 14.1.1 [deprecated]           ...           5 years ago
  • 14.1.0 [deprecated]           ...           5 years ago
  • 14.0.7 [deprecated]           ...           5 years ago
  • 14.0.6 [deprecated]           ...           5 years ago
  • 14.0.5 [deprecated]           ...           5 years ago
  • 14.0.4 [deprecated]           ...           5 years ago
  • 14.0.3 [deprecated]           ...           5 years ago
  • 14.0.2 [deprecated]           ...           5 years ago
  • 14.0.1 [deprecated]           ...           5 years ago
  • 14.0.0 [deprecated]           ...           5 years ago
  • 14.0.0-beta.5                                ...           5 years ago
  • 14.0.0-beta.3                                ...           5 years ago
  • 14.0.0-beta.2                                ...           5 years ago
  • 14.0.0-beta.1                                ...           5 years ago
  • 14.0.0-beta.0                                ...           5 years ago
  • 13.0.6 [deprecated]           ...           5 years ago
  • 13.0.5 [deprecated]           ...           5 years ago
  • 13.0.4 [deprecated]           ...           5 years ago
  • 13.0.3 [deprecated]           ...           5 years ago
  • 13.0.2 [deprecated]           ...           5 years ago
  • 13.0.1 [deprecated]           ...           5 years ago
  • 13.0.0 [deprecated]           ...           5 years ago
  • 12.0.2 [deprecated]           ...           5 years ago
  • 12.0.1 [deprecated]           ...           5 years ago
  • 12.0.0 [deprecated]           ...           5 years ago
  • 12.0.0-beta.2                                ...           5 years ago
  • 12.0.0-beta.0                                ...           5 years ago
  • 11.0.0 [deprecated]           ...           5 years ago
  • 9.1.1 [deprecated]           ...           6 years ago
  • 9.1.0 [deprecated]           ...           6 years ago
  • 9.0.0 [deprecated]           ...           6 years ago
  • 9.0.0-beta.0                                ...           6 years ago
  • 8.0.1 [deprecated]           ...           7 years ago
  • 8.0.0 [deprecated]           ...           7 years ago
  • 7.0.3 [deprecated]           ...           7 years ago
  • 7.0.2 [deprecated]           ...           7 years ago
  • 7.0.1 [deprecated]           ...           7 years ago
  • 7.0.0 [deprecated]           ...           7 years ago
  • 6.0.0 [deprecated]           ...           7 years ago
  • 5.1.0 [deprecated]           ...           7 years ago
  • 5.0.0 [deprecated]           ...           8 years ago
  • 4.1.0 [deprecated]           ...           8 years ago
  • 4.0.0 [deprecated]           ...           8 years ago
  • 3.0.1 [deprecated]           ...           8 years ago
  • 3.0.0 [deprecated]           ...           8 years ago
  • 2.0.2 [deprecated]           ...           8 years ago
  • 2.0.1 [deprecated]           ...           8 years ago
  • 2.0.0 [deprecated]           ...           8 years ago
  • 1.0.6 [deprecated]           ...           8 years ago
  • 1.0.5 [deprecated]           ...           8 years ago
  • 1.0.4 [deprecated]           ...           8 years ago
  • 1.0.3 [deprecated]           ...           8 years ago
  • 1.0.2 [deprecated]           ...           8 years ago
  • 1.0.1 [deprecated]           ...           8 years ago
  • 1.0.0 [deprecated]           ...           8 years ago
Maintainers (1)
Downloads
Total 63
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 12
Dependencies (12)
Dev Dependencies (4)
Dependents (0)
None

© 2010 - cnpmjs.org x YWFE | Home | YWFE