DefinitelyTyped/types/node/tslint.json
Deividas Bakanas 417f73ad32 [node] undefined type added to properties of dictionaries. Some TSLint TODOs resolved. (#18372)
* `undefined` type added to properties of dictionaries;
Formatting fixed;
TSLint TODOs resolved:
- adjacent-overload-signatures;
- align;
- array-type;
- callable-types;
- comment-format;
- dt-header;
- import-spacing;
- interface-over-type-literal;
- jsdoc-format;
- no-consecutive-blank-lines;
- no-padding;
- no-string-throw;
- object-literal-shorthand;
- one-line;
- only-arrow-functions;
- semicolon;
- whitespace.

* `NodeRequireFunction` `type` reverted to `interface`.
2017-07-31 13:57:11 -07:00

16 lines
358 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
// All are TODOs
"ban-types": false,
"max-line-length": false,
"no-empty-interface": false,
"no-internal-module": false,
"no-namespace": false,
"no-var": false,
"prefer-method-signature": false,
"strict-export-declare-modifiers": false,
"unified-signatures": false
}
}