/prettier-check

Check that all files match prettier code style.

Primary LanguageJavaScriptMIT LicenseMIT

prettier-check Build Status npm version

Check that all files match prettier code style.

Install

$ npm install --save-dev prettier prettier-check

Make sure you have prettier as a dependency (or globally), if not, prettier-check may break when using yarn or old versions of npm. For more information see this yarn issue.

Usage

Use it in the test script in your package.json:

  "scripts": {
    "test": "prettier-check src/**/*.js"
  },

All args are forwarded to prettier:

  "scripts": {
    "test": "prettier-check --single-quote --trailing-comma es5 src/**/*.js"
  },

License

MIT © Hexacta