1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-06 18:43:25 +00:00

Add Prettier configuration (#425)

This commit is contained in:
Oscar Hinton
2021-12-20 17:44:12 +01:00
committed by GitHub
parent 18073696d0
commit ec53a16c00
9 changed files with 681 additions and 23 deletions

View File

@@ -39,8 +39,10 @@
"dist:mac": "npm run build:prod && npm run clean && npm run package:mac",
"dist:lin": "npm run build:prod && npm run clean && npm run package:lin",
"publish:npm": "npm run build:prod && npm publish --access public",
"lint": "tslint 'src/**/*.ts' 'spec/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' 'spec/**/*.ts' --fix"
"lint": "tslint 'src/**/*.ts' 'spec/**/*.ts' && prettier --check .",
"lint:fix": "tslint 'src/**/*.ts' 'spec/**/*.ts' --fix",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"bin": {
"bw": "build/bw.js"
@@ -62,7 +64,10 @@
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.0",
"cross-env": "^7.0.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"pkg": "^5.5.1",
"prettier": "^2.5.1",
"ts-loader": "^8.2.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"tslint": "^6.1.3",
@@ -93,5 +98,8 @@
},
"engines": {
"node": ">=16"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}