mirror of https://github.com/mitchell/mjfs.us.git
25 lines
572 B
JSON
25 lines
572 B
JSON
{
|
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
|
"defaultSeverity": "warning",
|
|
"rules": {
|
|
"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"
|
|
],
|
|
"semicolon": false,
|
|
"interface-over-type-literal": false
|
|
},
|
|
"linterOptions": {
|
|
"exclude": ["config/**/*.js", "node_modules/**/*.ts"]
|
|
}
|
|
}
|