mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-01 00:50:04 +00:00
* Add new npm-naming exemptions These packages fail the upcoming requirement that the types package version match a version that exists for the original package. In other words, these packages have a version, like 0.0 or 1.0, that their original package doesn't have. The "npm-naming" lint rule will soon prevent this, so these packages need to be exempt from this rule. * Restore some useful comments/formatting * Update required TS version for stale packages
10 lines
325 B
JSON
10 lines
325 B
JSON
{
|
|
"extends": "dtslint/dt.json",
|
|
"rules": {
|
|
// This package has its own type `Object` which is not equal to the global `Object` type
|
|
// To avoid any confusion, it is referenced as `ioBroker.Object` instead of just `Object`
|
|
"no-unnecessary-qualifier": false,
|
|
"npm-naming": false
|
|
}
|
|
}
|