DefinitelyTyped/types/parse/tslint.json
Nathan Shively-Sanders 21ede62bdb
Put current version of parse in the root (#47207)
* Put current version of parse in the root

Previously, the code that supports the oldest version of Typescript was in the root: 3.1 and below. Newer versions were in ts*/ subdirectories.

This PR puts the newest version in the root, and older versions -- before 3.7 in this case -- in ts*/ subdirectories. This is possible because all supported versions of the Typescript now understand the typesVersions property in package.json.

This PR needs a new version of DefinitelyTyped-tools and dtslint, which I will ship soon. It also needs to be brought up to date with master.

* Delete ts3.7/

* restore disabled /// references
2020-09-01 16:16:49 -07:00

10 lines
206 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"ban-types": false,
"no-unnecessary-generics": false,
"no-self-import": false,
"no-declare-current-package": false
}
}