Files
DefinitelyTyped/types/lodash/tslint.json
AJ Richardson 437a2eef37 lodash: add isMatch to explicit wrapper interface, enable more lint rules (#22883)
* lodash: _.get should with numeric keys, too.
Also added some better tests.

* Enable array-type and ban-types rules

* Enable more lint rules, add isMatchWith to explicit wrapper
2018-01-18 13:25:39 -08:00

22 lines
616 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
// All are TODOs
"comment-format": [false],
"interface-over-type-literal": false,
"jsdoc-format": false,
"max-line-length": [false],
"no-namespace": false,
"no-unnecessary-generics": 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]
}
}