DefinitelyTyped/types/angular-google-analytics/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
764 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"array-type": false,
"ban-types": false,
"callable-types": false,
"dt-header": false,
"no-redundant-jsdoc": false,
"no-redundant-jsdoc-2": false,
"no-reference-import": false,
"no-trailing-whitespace": false,
"no-var-keyword": false,
"npm-naming": [
true,
{
"errors": [
[
"NeedsExportEquals",
false
]
],
"mode": "code"
}
],
"prefer-const": false,
"prefer-method-signature": false,
"strict-export-declare-modifiers": false
}
}