mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
662 B
JSON
21 lines
662 B
JSON
{
|
|
"extends": "dtslint/dt.json",
|
|
"rules": {
|
|
"strict-export-declare-modifiers": false,
|
|
// Heavy use of Function type in this older package.
|
|
"ban-types": false,
|
|
"jsdoc-format": false,
|
|
"no-misused-new": false,
|
|
// not sure what this means
|
|
"no-single-declare-module": false,
|
|
"object-literal-key-quotes": false,
|
|
"only-arrow-functions": false,
|
|
"no-empty-interface": false,
|
|
"prefer-const": false,
|
|
"no-unnecessary-generics": false,
|
|
"no-declare-current-package": false,
|
|
"no-self-import": false,
|
|
"no-return-await": false // used in tests
|
|
}
|
|
}
|