2019-09-03 01:53:03 +00:00
|
|
|
{
|
|
|
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
|
|
|
"defaultSeverity": "warning",
|
|
|
|
"rules": {
|
2019-09-03 06:07:13 +00:00
|
|
|
"no-any": true,
|
|
|
|
"no-unsafe-any": true,
|
|
|
|
"no-magic-numbers": true,
|
|
|
|
"no-console": true,
|
|
|
|
"cyclomatic-complexity": [true, 10],
|
|
|
|
"typedef": [
|
|
|
|
true,
|
|
|
|
"call-signature",
|
|
|
|
"parameter",
|
|
|
|
"arrow-parameter",
|
|
|
|
"property-declaration",
|
|
|
|
"member-variable-declaration"
|
|
|
|
],
|
2019-09-03 01:53:03 +00:00
|
|
|
"semicolon": false,
|
|
|
|
"interface-over-type-literal": false
|
|
|
|
},
|
|
|
|
"linterOptions": {
|
|
|
|
"exclude": ["config/**/*.js", "node_modules/**/*.ts"]
|
|
|
|
}
|
|
|
|
}
|