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

35 lines
1.1 KiB
JSON

{
"extends": "@definitelytyped/dtslint/dt.json",
"rules": {
"ban-types": false,
"comment-format": false,
"interface-name": false,
"jsdoc-format": false,
"max-line-length": false,
"no-consecutive-blank-lines": false,
"no-duplicate-variable": false,
"no-empty-interface": false,
"no-mergeable-namespace": false,
"no-padding": false,
"no-single-declare-module": false,
"no-trailing-whitespace": false,
"no-unnecessary-class": false,
"no-unnecessary-qualifier": false,
"no-var-keyword": false,
"npm-naming": false,
"object-literal-shorthand": false,
"one-line": false,
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"prefer-const": false,
"semicolon": false,
"space-before-function-paren": false,
"space-within-parens": false,
"strict-export-declare-modifiers": false,
"triple-equals": false,
"typedef-whitespace": false,
"unified-signatures": false,
"whitespace": false
}
}