forked from Mirrors/doipjs
Add prettier
This commit is contained in:
parent
2c20fb2796
commit
889c7a9f8b
5 changed files with 19 additions and 1 deletions
|
@ -9,8 +9,10 @@
|
|||
**/*.pug
|
||||
|
||||
package.json
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
\.editorconfig
|
||||
\.gitignore
|
||||
\.licenseignore
|
||||
\.prettierignore
|
||||
\.prettierrc.yaml
|
||||
Dockerfile
|
4
.prettierignore
Normal file
4
.prettierignore
Normal file
|
@ -0,0 +1,4 @@
|
|||
.git
|
||||
node_modules
|
||||
LICENSE
|
||||
LICENSE.HEADER
|
4
.prettierrc.yaml
Normal file
4
.prettierrc.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
trailingComma: 'es5'
|
||||
tabWidth: 2
|
||||
semi: false
|
||||
singleQuote: true
|
|
@ -7,6 +7,7 @@
|
|||
"bent": "^7.3.12",
|
||||
"browserify": "^17.0.0",
|
||||
"merge-options": "^3.0.3",
|
||||
"prettier": "^2.1.2",
|
||||
"valid-url": "^1.0.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -20,6 +21,8 @@
|
|||
"scripts": {
|
||||
"release:bundle": "./node_modules/browserify/bin/cmd.js ./src/index.js --standalone doip -o ./dist/doip.js",
|
||||
"release:minify": "./node_modules/minify/bin/minify.js ./dist/doip.js > ./dist/doip.min.js",
|
||||
"prettier:check": "./node_modules/prettier/bin-prettier.js --check .",
|
||||
"prettier:write": "./node_modules/prettier/bin-prettier.js --write .",
|
||||
"license:check": "./node_modules/license-check-and-add/dist/src/cli.js check",
|
||||
"license:add": "./node_modules/license-check-and-add/dist/src/cli.js add",
|
||||
"license:remove": "./node_modules/license-check-and-add/dist/src/cli.js remove",
|
||||
|
|
|
@ -1621,6 +1621,11 @@ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
|
|||
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
|
||||
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
|
||||
|
||||
prettier@^2.1.2:
|
||||
version "2.1.2"
|
||||
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.2.tgz#3050700dae2e4c8b67c4c3f666cdb8af405e1ce5"
|
||||
integrity sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==
|
||||
|
||||
process-nextick-args@~2.0.0:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
|
||||
|
|
Loading…
Reference in a new issue