Files
DefinitelyTyped/types/braintree-web/tslint.json
Piotr Błażejewicz (Peter Blazejewicz) 2729c1ac01 fix(braintree-web): add missing propertes to factory methods (#43433)
* fix(braintree-web): add missing propertes to factory methods

- `authorization`
- `version`

https://braintree.github.io/braintree-web/current/module-braintree-web_hosted-fields.html#.create
https://braintree.github.io/braintree-web/current/module-braintree-web_three-d-secure.html#.create

/cc @jbojcic1

Thanks!

Fixes: #43346

* Add missing `authorization` option as per PR comment
2020-04-03 13:12:28 -07:00

32 lines
1.0 KiB
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"callable-types": false,
"comment-format": false,
"dt-header": false,
"export-just-namespace": false,
"jsdoc-format": false,
"max-line-length": false,
"no-consecutive-blank-lines": false,
"no-duplicate-imports": false,
"no-inferrable-types": false,
"no-mergeable-namespace": false,
"no-padding": false,
"no-redundant-jsdoc": false,
"no-redundant-jsdoc-2": false,
"no-unnecessary-qualifier": false,
"no-unnecessary-type-assertion": false,
"no-var-keyword": false,
"object-literal-key-quotes": false,
"object-literal-shorthand": false,
"only-arrow-functions": false,
"prefer-const": false,
"prefer-method-signature": false,
"semicolon": false,
"space-before-function-paren": false,
"strict-export-declare-modifiers": false,
"trim-file": false,
"unified-signatures": false
}
}