Files
DefinitelyTyped/types/espruino/tslint.json
Nathan Shively-Sanders 6115ac10be Add new npm-naming exemptions (#36969)
* 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
2019-07-17 14:06:12 -07:00

16 lines
454 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"strict-export-declare-modifiers": false,
"no-padding": false,
"no-trailing-whitespace": false,
"jsdoc-format": false,
"no-redundant-jsdoc-2": false,
"max-line-length": false,
"interface-name": false,
"no-misused-new": false,
"no-consecutive-blank-lines": false,
"no-var-keyword": false,
"npm-naming": false
}
}