16.0.24 • Published 5 years ago
prettier-standard-cli v16.0.24
Just a simple wrapper around Prettier & Standard with auto-fix enabled.
Why
- Simplify
package.jsonuse - Filter non-
jsfile extensions fromstandard, thinksjsonisjs
Getting Started
npm i -D prettier-standard-cliDeployment
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
- sheerun/prettier-standard for the insperation
16.0.23
5 years ago
16.0.24
5 years ago
16.0.22
5 years ago
16.0.21
5 years ago
16.0.20
5 years ago
16.0.19
5 years ago
16.0.18
5 years ago
16.0.17
5 years ago
16.0.16
5 years ago
16.0.15
5 years ago
16.0.14
5 years ago
16.0.13
5 years ago
16.0.12
5 years ago
16.0.11
5 years ago
16.0.10
5 years ago
16.0.9
5 years ago
16.0.8
5 years ago
16.0.7
5 years ago
16.0.6
5 years ago
16.0.5
5 years ago
16.0.4
5 years ago
16.0.3
5 years ago
14.3.3
6 years ago
14.3.1
6 years ago
11.0.6
8 years ago
11.0.5
8 years ago
11.0.4
8 years ago
11.0.3
8 years ago
11.0.2
8 years ago
11.0.1
8 years ago
11.0.0
8 years ago