DefinitelyTyped/types/stripe/tslint.json
Claus Stilborg 8f92920eb8 Types stripe update invoice (#40113)
* Turn off strict-export-declare-modifiers
We are using declare, so this rule is just a pain

* Update the IInvoice interface, fix some bugs

* Remove linter test to make tsc work
That kind of testing for error with linting, will break typescript compilation.
And that seems counter intuitive given the nature of this project.

* Run prettier on tests as well

* Run prettier on tslint.json

* Run prettier
2019-11-05 14:04:01 -08:00

10 lines
212 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"interface-name": false,
"max-line-length": false,
"unified-signatures": false,
"strict-export-declare-modifiers": false
}
}