mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-10 09:40:21 +08:00
* [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
30 lines
896 B
JSON
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]
|
|
}
|
|
}
|