Skip to content

Commit

Permalink
add prettier tslint plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
dmstern committed Nov 26, 2018
1 parent 63215e7 commit c4d4f28
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
13 changes: 12 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-serve-static-core": "^0.1.1",
"fs-extra": "^7.0.0",
"morgan": "^1.9.0",
"node-emoji": "^1.8.1",
Expand Down Expand Up @@ -69,6 +70,7 @@
"release-it": "^7.6.0",
"sass-loader": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^2.1.0",
"vue-cli-plugin-vuetify": "^0.1.6",
"vue-template-compiler": "^2.5.16"
Expand Down
7 changes: 5 additions & 2 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"defaultSeverity": "warning",
"extends": ["tslint:recommended"],
"extends": [
"tslint:recommended",
"tslint:latest",
"tslint-config-prettier"
],
"linterOptions": {
"exclude": ["node_modules/**"]
},
"rules": {
"quotemark": [true, "single"],
"indent": [true, "spaces", 2],
"interface-name": false,
"ordered-imports": false,
Expand Down

0 comments on commit c4d4f28

Please sign in to comment.