Files
DefinitelyTyped/types/alt/tslint.json
Nathan Shively-Sanders ef0961aa77 Port no-declare-current-package (#64854)
* Port no-declare-current-package

Depends on
https://github.com/microsoft/DefinitelyTyped-tools/pull/645

* add no-single-declare-module exemptions
2023-03-22 12:37:35 -07:00

23 lines
678 B
JSON

{
"extends": "@definitelytyped/dtslint/dt.json",
"rules": {
"adjacent-overload-signatures": false,
"array-type": false,
"ban-types": false,
"comment-format": false,
"interface-over-type-literal": false,
"no-inferrable-types": false,
"no-padding": false,
"no-unnecessary-qualifier": false,
"no-var-keyword": false,
"one-line": false,
"prefer-const": false,
"semicolon": false,
"space-within-parens": false,
"strict-export-declare-modifiers": false,
"typedef-whitespace": false,
"unified-signatures": false,
"whitespace": false
}
}