Files
DefinitelyTyped/types/mdns/tslint.json
Josh Goldberg 066caa89ef Tooling: migrated export-just-namespace to ESLint (#62141)
* Tooling: migrated export-just-namespace to ESLint

* Ah, also add to .eslintrc.json

* Update disable-next-line comments for export-just-namespace

Co-authored-by: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com>
2022-09-13 10:57:41 -07:00

23 lines
668 B
JSON

{
"extends": "@definitelytyped/dtslint/dt.json",
"rules": {
"array-type": false,
"ban-types": false,
"comment-format": false,
"no-consecutive-blank-lines": false,
"no-duplicate-variable": false,
"no-empty-interface": false,
"no-misused-new": false,
"no-padding": false,
"no-var-keyword": false,
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"prefer-const": false,
"semicolon": false,
"space-within-parens": false,
"typedef-whitespace": false,
"unified-signatures": false,
"whitespace": false
}
}