mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
npm-naming is a new rule but the code it runs was already disabled whenever dt-header was disabled. This change keeps the behaviour the same.
18 lines
552 B
JSON
18 lines
552 B
JSON
{
|
|
"extends": "dtslint/dt.json",
|
|
"rules": {
|
|
// TODOs
|
|
"adjacent-overload-signatures": false,
|
|
"ban-types": false,
|
|
"dt-header": false,
|
|
"npm-naming": false,
|
|
"no-any-union": false,
|
|
"unified-signatures": false,
|
|
"no-unnecessary-generics": false,
|
|
// TODO: left in redundant jsdoc that conflicts with type declarations
|
|
// Need to go over each and decide whether the jsdoc or type is correct
|
|
"no-redundant-jsdoc": false,
|
|
"no-redundant-jsdoc-2": false
|
|
}
|
|
}
|