fix(package): update tslint

This commit is contained in:
Philipp Kunz 2018-07-25 16:58:51 +02:00
parent 516c0c21de
commit 2e862d6840
2 changed files with 9 additions and 2 deletions

View File

@ -15,6 +15,9 @@ export type questionType =
| 'password'
| 'editor';
/**
* a choice
*/
export interface IChoiceObject {
name: string;
value: any;

View File

@ -1,3 +1,7 @@
{
"extends": "tslint-config-standard"
}
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"]
}
}