Files
DefinitelyTyped/types/lodash/tslint.json
AJ Richardson 77eac54847 [lodash] Better chaining wrappers, overload clean-up (#19356)
* [lodash] improved iterateee parameters, simplified forEach overloads

* Changed ListIterator to StringIterator, cleaned up more issues with flatMap

* Even more flatMap cleanup

* Making wrapper types simpler and more accurate (not done)

* Fixed type inference for forEach callback arguments

* Converted explicit wrapper types, implemented differenceWith

* Updated more functions to use new-style wrappers

* Finished updating the remaining methods

* Fixed lint errors

* Fixed parameter type inference when using `any` (#19228)

* Fixed test errors

* Fixed issues with _.get

* Fixed issues with _.get

* consider this

* removed duplicate type, added TODO

* More _.get fixes

* Fixed issues with mapValues with a single parameter

* Modified lodash-tests to have minimal diff with upstream

* Improved backwards compatibility
2017-10-19 08:09:17 -07:00

30 lines
896 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
// All are TODOs
"array-type": false,
"ban-types": false,
"callable-types": false,
"comment-format": [false],
"interface-name": false,
"interface-over-type-literal": false,
"jsdoc-format": false,
"max-line-length": [false],
"no-any-union": false,
"no-empty-interface": false,
"no-mergeable-namespace": false,
"no-namespace": false,
"no-unnecessary-generics": false,
"no-unnecessary-type-assertion": false,
"no-void-expression": false,
"object-literal-key-quotes": false,
"one-line": false,
"prefer-const": false,
"semicolon": false,
"space-within-parens": false,
"typedef-whitespace": [false],
"unified-signatures": false,
"whitespace": [false]
}
}