DefinitelyTyped/types/angular/tslint.json
Gabriela Araujo Britto e980ea529f
Update tslint configs (#42555)
* Update tslint configs

* Update npm-naming configs

* Fix some configs

#no-publishing-comment
2020-02-24 16:06:03 -08:00

29 lines
690 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"ban-types": false,
"callable-types": false,
"class-name": true,
"indent": [
true,
"spaces"
],
"interface-name": false,
"jsdoc-format": false,
"max-line-length": false,
"no-empty-interface": false,
"no-namespace": false,
"no-unnecessary-generics": false,
"no-unnecessary-qualifier": false,
"quotemark": [
true,
"single"
],
"unified-signatures": false,
"variable-name": [
true,
"check-format"
],
"void-return": false
}
}