16.0.24 • Published 4 years ago

prettier-standard-cli v16.0.24

Weekly downloads
80
License
MIT
Repository
github
Last release
4 years ago

Just a simple wrapper around Prettier & Standard with auto-fix enabled.

Why

  • Simplify package.json use
  • Filter non-js file extensions from standard, thinks json is js

Getting Started

npm i -D prettier-standard-cli

Deployment

cli

  • prettier 'styles/*.{json,js}'
  • standard 'src/*.js'
  • prettier-standard 'src/**/*.{css,json,js}'

package.json

{
  "devDependencies": {
    "lint-staged":"*",
    "husky":"*",
    "prettier-standard-cli":"*"
  },
  "scripts": {
    "precommit":"lint-staged",
    "lint": "prettier-standard 'src/**/*.{css,json,js}'",
  },
  "lint-staged": {
    "src/**/*.{css,json,js}": [
      "prettier-standard",
      "git add"
    ]
  }
}

package.json standalone equivalent

{
  "devDependencies": {
    "lint-staged":"*",
    "husky":"*",
    "prettier":"*",
    "standard":"*"
  },
  "scripts": {
    "precommit":"lint-staged",
    "lint": "prettier --write --loglevel warn 'src/**/*.{css,json,js}' && standard --fix 'src/**/*.js'",
  },
  "lint-staged": {
    "src/**/*.{css,json}": [
      "prettier --write",
      "git add"
    ],
    "src/**/*.js": [
      "prettier --write",
      "standard --fix",
      "git add"
    ]
  }
}

Built With

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

16.0.23

4 years ago

16.0.24

4 years ago

16.0.22

4 years ago

16.0.21

4 years ago

16.0.20

4 years ago

16.0.19

4 years ago

16.0.18

4 years ago

16.0.17

4 years ago

16.0.16

4 years ago

16.0.15

4 years ago

16.0.14

4 years ago

16.0.13

4 years ago

16.0.12

4 years ago

16.0.11

4 years ago

16.0.10

4 years ago

16.0.9

4 years ago

16.0.8

4 years ago

16.0.7

4 years ago

16.0.6

4 years ago

16.0.5

5 years ago

16.0.4

5 years ago

16.0.3

5 years ago

14.3.3

5 years ago

14.3.1

6 years ago

11.0.6

7 years ago

11.0.5

7 years ago

11.0.4

7 years ago

11.0.3

7 years ago

11.0.2

7 years ago

11.0.1

7 years ago

11.0.0

7 years ago