Files
DefinitelyTyped/types/knockout/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

37 lines
1.2 KiB
JSON

{
"extends": "@definitelytyped/dtslint/dt.json",
"rules": {
"adjacent-overload-signatures": false,
"array-type": false,
"ban-types": false,
"comment-format": false,
"jsdoc-format": false,
"max-line-length": false,
"member-access": false,
"new-parens": false,
"no-boolean-literal-compare": false,
"no-consecutive-blank-lines": false,
"no-empty-interface": false,
"no-eval": false,
"no-object-literal-type-assertion": false,
"no-padding": false,
"no-single-declare-module": false,
"no-trailing-whitespace": false,
"no-var-keyword": false,
"object-literal-key-quotes": false,
"object-literal-shorthand": false,
"one-line": false,
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"prefer-const": false,
"prefer-for-of": false,
"prefer-template": false,
"semicolon": false,
"space-before-function-paren": false,
"triple-equals": false,
"typedef-whitespace": false,
"unified-signatures": false,
"whitespace": false
}
}