Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.66 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.66 KB

standard-prettier-eslint

A helper package for integrate prettier-eslint with standard

npm version npm downloads

Formats your JavaScript using prettier followed by standard --fix

  • prettier is a wonderful tool for code prettify.
  • standard is zero configuration pain tool based on ESLint.

The two packages are great and very well designed, that can be used together with a minimum effort

Installation

$ npm install standard-prettier-eslint --save-dev

Usage

Ex: package.json

"scripts": {
  ...
  "lint": "standard --verbose | snazzy",
  "format": "npm run __format -- --write '**/*.js'",
  "__format": "prettier-eslint --no-bracket-spacing --eslint-path=node_modules/standard-prettier-eslint"
}

Standalone CLI

prettier-std-cli is the cli version created for simplify package.json scripts settings and use globally.

If you prefer semicolons use semistandard version

Contributing

  • Documentation improvement
  • Feel free to send any PR

License

MIT