2019-06-08 00:36:44 +02:00
|
|
|
{
|
|
|
|
"rulesDirectory": ["tslint-plugin-prettier"],
|
|
|
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
2019-06-16 00:41:43 +02:00
|
|
|
"defaultSeverity": "warn",
|
2019-06-08 00:36:44 +02:00
|
|
|
"rules": {
|
|
|
|
"prettier": true,
|
|
|
|
"no-console": true,
|
2019-06-08 02:18:50 +02:00
|
|
|
"object-literal-sort-keys": [true, "match-declaration-order-only"],
|
2019-06-16 00:41:43 +02:00
|
|
|
"no-implicit-dependencies": false,
|
|
|
|
"no-submodule-imports": false,
|
|
|
|
"arrow-parens": [true, "ban-single-arg-parens"],
|
|
|
|
"no-floating-promises": true,
|
|
|
|
"no-unused-expression": true,
|
|
|
|
"await-promise": true,
|
|
|
|
"no-inferrable-types": true,
|
2019-06-23 02:30:24 +02:00
|
|
|
"prefer-for-of": true,
|
|
|
|
"no-empty": [true, "allow-empty-functions"]
|
2019-06-09 02:47:46 +02:00
|
|
|
},
|
|
|
|
"jsRules": true
|
2019-06-08 00:36:44 +02:00
|
|
|
}
|