1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-07 11:03:30 +00:00

Add TSLint (#340)

* Add tslint.

* Disable alphabetic ordering.

* Change place on selectionTitle.
This commit is contained in:
Oscar Hinton
2017-10-30 22:49:56 +01:00
committed by Kyle Spearrin
parent 77f9270131
commit f922b2e0cb
5 changed files with 61 additions and 8 deletions

View File

@@ -5,7 +5,9 @@
"start:firefox": "web-ext run --source-dir ./dist/",
"dev": "gulp build && webpack --config webpack.dev.js",
"dev:watch": "gulp build && webpack --config webpack.dev.js --watch",
"prod": "gulp build && webpack --config webpack.prod.js"
"prod": "gulp build && webpack --config webpack.prod.js",
"lint": "tslint src/**/*.ts || true",
"lint:fix": "tslint src/**/*.ts --fix"
},
"devDependencies": {
"angular": "1.6.6",
@@ -52,6 +54,8 @@
"sweetalert": "1.1.3",
"tldjs": "2.0.0",
"ts-loader": "^3.0.5",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.5.3",
"vinyl-source-stream": "1.1.0",
"web-ext": "2.0.0",