DefinitelyTyped/types/react-amplitude/tslint.json
Nathan Shively-Sanders 75127bb1be
Exempt 3 react packages from npm-naming (#44850)
* Exempt 3 react packages from npm-naming

The lint rule incorrectly thinks the packages export a callable object.
Typescript is usually bad at understanding the output of a react
package, so I think the best thing is to turn off the rule.

* add missed react package
2020-05-18 11:04:37 -07:00

7 lines
143 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"npm-naming": [true,{"mode":"code","errors":[["NeedsExportEquals",false]]}]
}
}