mirror of
https://github.com/knex/knex.git
synced 2026-01-08 04:57:00 +00:00
* Use number instead of number | string for return type of count Closes #3247 * Use an alias instead of interface for DeferredKeySelection This prevents typescript from complaining when it has to be used in an exported signature without us having to expose internal type as public Closes #3259 * Make count result type overridable * Disable interface-over-type-literal rule
16 lines
400 B
JSON
16 lines
400 B
JSON
{
|
|
"extends": "dtslint/dtslint.json",
|
|
"rules": {
|
|
"ban-types": false,
|
|
"await-promise": false,
|
|
"array-type": false,
|
|
"no-unnecessary-generics": false,
|
|
"no-empty-interface": false,
|
|
"unified-signatures": false,
|
|
"no-unnecessary-qualifier": false,
|
|
"strict-export-declare-modifiers": false,
|
|
"only-arrow-functions": false,
|
|
"interface-over-type-literal": false
|
|
}
|
|
}
|