1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-26 13:13:29 +00:00

Add Prettier configuration (#574)

This commit is contained in:
Oscar Hinton
2021-12-16 12:45:01 +01:00
committed by GitHub
parent 512c5c2837
commit 8b2dfc6cdc
9 changed files with 2430 additions and 891 deletions

View File

@@ -18,17 +18,21 @@
"build:watch": "npm run clean && ttsc -watch",
"lint": "tslint '*/src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint '*/src/**/*.ts' 'spec/**/*.ts' --fix",
"prettier": "prettier --write .",
"test": "karma start ./spec/support/karma.conf.js --single-run",
"test:watch": "karma start ./spec/support/karma.conf.js",
"test:node": "npm run build && jasmine",
"test:node:watch": "concurrently -k -n TSC,Node -c yellow,cyan \"npm run build:watch\" \"nodemon -w ./dist --delay 500ms --exec jasmine\""
"test:node:watch": "concurrently -k -n TSC,Node -c yellow,cyan \"npm run build:watch\" \"nodemon -w ./dist --delay 500ms --exec jasmine\"",
"prepare": "husky install"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.202.0",
"@types/jasmine": "^3.7.6",
"@types/node": "^16.11.12",
"commander": "7.2.0",
"concurrently": "^6.1.0",
"form-data": "4.0.0",
"husky": "^7.0.4",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"jasmine-ts-console-reporter": "^3.1.1",
@@ -42,7 +46,9 @@
"karma-jasmine-html-reporter": "^1.5.4",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^4.0.2",
"lint-staged": "^12.1.2",
"nodemon": "^2.0.7",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"ts-loader": "^8.1.0",
@@ -62,5 +68,8 @@
"engines": {
"node": "~16",
"npm": "~8"
},
"lint-staged": {
"*.{js,ts,css,scss,md}": "prettier --write"
}
}