@definitelytyped/eslint-plugin 0.0.190 → 0.0.192
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/configs/all.js +29 -2
- package/dist/configs/all.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/rules/export-just-namespace.js +1 -1
- package/dist/rules/export-just-namespace.js.map +1 -1
- package/dist/rules/no-bad-reference.js +6 -5
- package/dist/rules/no-bad-reference.js.map +1 -1
- package/dist/rules/no-dead-reference.js +6 -3
- package/dist/rules/no-dead-reference.js.map +1 -1
- package/dist/rules/no-declare-current-package.js +2 -2
- package/dist/rules/no-declare-current-package.js.map +1 -1
- package/dist/rules/no-import-default-of-export-equals.js +1 -1
- package/dist/rules/no-import-default-of-export-equals.js.map +1 -1
- package/dist/rules/no-import-of-dev-dependencies.js +3 -3
- package/dist/rules/no-import-of-dev-dependencies.js.map +1 -1
- package/dist/rules/no-old-dt-header.js +2 -2
- package/dist/rules/no-old-dt-header.js.map +1 -1
- package/dist/rules/no-relative-import-in-test.js +1 -1
- package/dist/rules/no-relative-import-in-test.js.map +1 -1
- package/dist/rules/no-self-import.js +1 -1
- package/dist/rules/no-self-import.js.map +1 -1
- package/dist/rules/no-single-declare-module.js +2 -2
- package/dist/rules/no-single-declare-module.js.map +1 -1
- package/dist/rules/no-useless-files.js +2 -2
- package/dist/rules/no-useless-files.js.map +1 -1
- package/dist/rules/prefer-declare-function.js +1 -1
- package/dist/rules/prefer-declare-function.js.map +1 -1
- package/dist/rules/strict-export-declare-modifiers.js +1 -1
- package/dist/rules/strict-export-declare-modifiers.js.map +1 -1
- package/package.json +8 -5
- package/src/configs/all.ts +28 -1
- package/src/index.ts +2 -2
- package/src/rules/export-just-namespace.ts +1 -1
- package/src/rules/no-bad-reference.ts +6 -5
- package/src/rules/no-dead-reference.ts +6 -3
- package/src/rules/no-declare-current-package.ts +2 -2
- package/src/rules/no-import-default-of-export-equals.ts +1 -1
- package/src/rules/no-import-of-dev-dependencies.ts +3 -3
- package/src/rules/no-old-dt-header.ts +2 -2
- package/src/rules/no-relative-import-in-test.ts +1 -1
- package/src/rules/no-self-import.ts +1 -1
- package/src/rules/no-single-declare-module.ts +2 -2
- package/src/rules/no-useless-files.ts +2 -2
- package/src/rules/prefer-declare-function.ts +1 -1
- package/src/rules/strict-export-declare-modifiers.ts +1 -1
- package/test/__file_snapshots__/types/export-just-namespace/bad1.d.ts.lint +11 -0
- package/test/__file_snapshots__/types/export-just-namespace/bad2.d.ts.lint +11 -0
- package/test/__file_snapshots__/types/export-just-namespace/bad3.d.ts.lint +12 -0
- package/test/__file_snapshots__/types/export-just-namespace/export-just-namespace-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/export-just-namespace/good1.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/export-just-namespace/good2.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/export-just-namespace/good3.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/export-just-namespace/good4.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/export-just-namespace/good5.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/export-just-namespace/good6.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/export-just-namespace/good7.d.ts.lint +7 -0
- package/test/__file_snapshots__/types/export-just-namespace/good8.d.ts.lint +7 -0
- package/test/__file_snapshots__/types/export-just-namespace/good9.d.ts.lint +15 -0
- package/test/__file_snapshots__/types/foo/foo-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/foo/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/foo/v1/foo-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/foo/v1/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/no-any-union/bad.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-any-union/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/no-any-union/no-any-union-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-bad-reference/index.d.ts.lint +43 -0
- package/test/__file_snapshots__/types/no-bad-reference/no-bad-reference-tests.ts.lint +14 -0
- package/test/__file_snapshots__/types/no-bad-reference/v0.1/index.d.ts.lint +48 -0
- package/test/__file_snapshots__/types/no-bad-reference/v0.1/no-bad-reference-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-bad-reference/v11/index.d.ts.lint +48 -0
- package/test/__file_snapshots__/types/no-bad-reference/v11/no-bad-reference-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-const-enum/bad.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-const-enum/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/no-const-enum/no-const-enum-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-dead-reference/bad.d.ts.lint +18 -0
- package/test/__file_snapshots__/types/no-dead-reference/bad2.d.ts.lint +15 -0
- package/test/__file_snapshots__/types/no-dead-reference/bad3.d.ts.lint +17 -0
- package/test/__file_snapshots__/types/no-dead-reference/index.d.ts.lint +6 -0
- package/test/__file_snapshots__/types/no-dead-reference/no-dead-reference-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-declare-current-package/index.d.ts.lint +13 -0
- package/test/__file_snapshots__/types/no-declare-current-package/no-declare-current-package-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-declare-current-package/test/deep/import.d.ts.lint +13 -0
- package/test/__file_snapshots__/types/no-declare-current-package-other/index.d.ts.lint +6 -0
- package/test/__file_snapshots__/types/no-declare-current-package-other/no-declare-current-package-other-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-import-default-of-export-equals/bad.d.ts.lint +17 -0
- package/test/__file_snapshots__/types/no-import-default-of-export-equals/index.d.ts.lint +12 -0
- package/test/__file_snapshots__/types/no-import-default-of-export-equals/no-import-default-of-export-equals-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-import-of-dev-dependencies/bad.d.ts.lint +29 -0
- package/test/__file_snapshots__/types/no-import-of-dev-dependencies/index.d.ts.lint +16 -0
- package/test/__file_snapshots__/types/no-import-of-dev-dependencies/no-import-of-dev-dependencies-tests.ts.lint +24 -0
- package/test/__file_snapshots__/types/no-old-dt-header/index.d.ts.lint +23 -0
- package/test/__file_snapshots__/types/no-old-dt-header/index2.d.ts.lint +14 -0
- package/test/__file_snapshots__/types/no-old-dt-header/no-old-dt-header-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-old-dt-header/ok1.ts.lint +11 -0
- package/test/__file_snapshots__/types/no-old-dt-header/ok2.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-old-dt-header/ok3.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-old-dt-header/ok4.d.ts.lint +12 -0
- package/test/__file_snapshots__/types/no-relative-import-in-test/abc.d.ts.lint +6 -0
- package/test/__file_snapshots__/types/no-relative-import-in-test/bad.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-relative-import-in-test/index.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-relative-import-in-test/no-relative-import-in-test/abc.d.ts.lint +6 -0
- package/test/__file_snapshots__/types/no-relative-import-in-test/no-relative-import-in-test-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-relative-import-in-test/no-relative-import-in-test-tests2.ts.lint +7 -0
- package/test/__file_snapshots__/types/no-relative-references/index.d.ts.lint +45 -0
- package/test/__file_snapshots__/types/no-relative-references/no-relative-references-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-relative-references/other/other.d.ts.lint +31 -0
- package/test/__file_snapshots__/types/no-relative-references/v1/index.d.ts.lint +51 -0
- package/test/__file_snapshots__/types/no-relative-references/v1/no-relative-references-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-relative-references/v1/other/other.d.ts.lint +31 -0
- package/test/__file_snapshots__/types/no-self-import/bad.d.ts.lint +35 -0
- package/test/__file_snapshots__/types/no-self-import/index.d.ts.lint +11 -0
- package/test/__file_snapshots__/types/no-self-import/no-self-import-tests.ts.lint +24 -0
- package/test/__file_snapshots__/types/no-single-declare-module/bad.d.ts.lint +13 -0
- package/test/__file_snapshots__/types/no-single-declare-module/index.d.ts.lint +6 -0
- package/test/__file_snapshots__/types/no-single-declare-module/index2.d.ts.lint +6 -0
- package/test/__file_snapshots__/types/no-single-declare-module/index3.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/no-single-declare-module/no-single-declare-module-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-single-element-tuple-type/bad.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-single-element-tuple-type/index.d.ts.lint +9 -0
- package/test/__file_snapshots__/types/no-single-element-tuple-type/no-single-element-tuple-type-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-unnecessary-generics/bad.d.ts.lint +14 -0
- package/test/__file_snapshots__/types/no-unnecessary-generics/index.d.ts.lint +11 -0
- package/test/__file_snapshots__/types/no-unnecessary-generics/no-unnecessary-generics-tests.ts.lint +44 -0
- package/test/__file_snapshots__/types/no-useless-files/bad.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-useless-files/bad2.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-useless-files/bad3.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/no-useless-files/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/no-useless-files/index2.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/no-useless-files/index3.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/no-useless-files/no-useless-files-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/other/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/other/other-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/other/v1/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/other/v1/other-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/prefer-declare-function/bad.d.ts.lint +33 -0
- package/test/__file_snapshots__/types/prefer-declare-function/index.d.ts.lint +14 -0
- package/test/__file_snapshots__/types/prefer-declare-function/prefer-declare-function-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/redundant-undefined/bad.d.ts.lint +15 -0
- package/test/__file_snapshots__/types/redundant-undefined/index.d.ts.lint +9 -0
- package/test/__file_snapshots__/types/redundant-undefined/redundant-undefined-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/scoped__foo/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/scoped__foo/scoped__foo-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/scoped__foo/v1/index.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/scoped__foo/v1/scoped__foo-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/scoped__no-declare-current-package/index.d.ts.lint +13 -0
- package/test/__file_snapshots__/types/scoped__no-declare-current-package/no-declare-current-package-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/scoped__no-declare-current-package/test/deep/import.d.ts.lint +13 -0
- package/test/__file_snapshots__/types/scoped__no-relative-references/index.d.ts.lint +45 -0
- package/test/__file_snapshots__/types/scoped__no-relative-references/no-relative-references-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/scoped__no-relative-references/other/other.d.ts.lint +31 -0
- package/test/__file_snapshots__/types/scoped__no-relative-references/v1/index.d.ts.lint +51 -0
- package/test/__file_snapshots__/types/scoped__no-relative-references/v1/no-relative-references-tests.ts.lint +10 -0
- package/test/__file_snapshots__/types/scoped__no-relative-references/v1/other/other.d.ts.lint +31 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/bad1.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/bad2.d.ts.lint +12 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/bad3.d.ts.lint +10 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/bad4.d.ts.lint +12 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/bad5.d.ts.lint +11 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/bad6.d.ts.lint +14 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/bad7.d.ts.lint +14 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good1.ts.lint +5 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good2.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good3.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good4.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good5.d.ts.lint +5 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good6.ts.lint +7 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good7.d.ts.lint +6 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good8.d.ts.lint +9 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/good9.d.ts.lint +7 -0
- package/test/__file_snapshots__/types/strict-export-declare-modifiers/strict-export-declare-modifiers-tests.ts.lint +10 -0
- package/test/eslint.test.ts +134 -0
- package/test/fixtures/.eslintrc.cjs +4 -0
- package/test/fixtures/types/export-just-namespace/bad1.d.ts +2 -0
- package/test/fixtures/types/export-just-namespace/bad2.d.ts +2 -0
- package/test/fixtures/types/export-just-namespace/bad3.d.ts +3 -0
- package/test/fixtures/types/export-just-namespace/export-just-namespace-tests.ts +0 -0
- package/test/fixtures/types/export-just-namespace/good1.d.ts +1 -0
- package/test/fixtures/types/export-just-namespace/good2.d.ts +1 -0
- package/test/fixtures/types/export-just-namespace/good3.d.ts +1 -0
- package/test/fixtures/types/export-just-namespace/good4.d.ts +1 -0
- package/test/fixtures/types/export-just-namespace/good5.d.ts +1 -0
- package/test/fixtures/types/export-just-namespace/good6.d.ts +1 -0
- package/test/fixtures/types/export-just-namespace/good7.d.ts +3 -0
- package/test/fixtures/types/export-just-namespace/good8.d.ts +3 -0
- package/test/fixtures/types/export-just-namespace/good9.d.ts +3 -0
- package/test/fixtures/types/export-just-namespace/package.json +8 -0
- package/test/fixtures/types/export-just-namespace/tsconfig.json +31 -0
- package/test/fixtures/types/no-any-union/bad.d.ts +1 -0
- package/test/fixtures/types/no-any-union/index.d.ts +1 -0
- package/test/fixtures/types/no-any-union/no-any-union-tests.ts +1 -0
- package/test/fixtures/types/no-any-union/package.json +8 -0
- package/test/fixtures/types/no-any-union/tsconfig.json +21 -0
- package/test/fixtures/types/no-bad-reference/tsconfig.json +1 -1
- package/test/fixtures/types/no-bad-reference/v0.1/tsconfig.json +1 -1
- package/test/fixtures/types/no-bad-reference/v11/tsconfig.json +1 -1
- package/test/fixtures/types/no-const-enum/bad.d.ts +1 -0
- package/test/fixtures/types/no-const-enum/index.d.ts +1 -0
- package/test/fixtures/types/no-const-enum/no-const-enum-tests.ts +0 -0
- package/test/fixtures/types/no-const-enum/package.json +8 -0
- package/test/fixtures/types/no-const-enum/tsconfig.json +21 -0
- package/test/fixtures/types/no-dead-reference/bad.d.ts +6 -0
- package/test/fixtures/types/no-dead-reference/bad2.d.ts +3 -0
- package/test/fixtures/types/no-dead-reference/bad3.d.ts +5 -0
- package/test/fixtures/types/no-dead-reference/index.d.ts +2 -0
- package/test/fixtures/types/no-dead-reference/no-dead-reference-tests.ts +0 -0
- package/test/fixtures/types/no-dead-reference/package.json +8 -0
- package/test/fixtures/types/no-dead-reference/tsconfig.json +23 -0
- package/test/fixtures/types/no-declare-current-package/tsconfig.json +2 -1
- package/test/fixtures/types/no-declare-current-package-other/tsconfig.json +1 -1
- package/test/fixtures/types/no-import-default-of-export-equals/bad.d.ts +8 -0
- package/test/fixtures/types/no-import-default-of-export-equals/index.d.ts +8 -0
- package/test/fixtures/types/no-import-default-of-export-equals/no-import-default-of-export-equals-tests.ts +0 -0
- package/test/fixtures/types/no-import-default-of-export-equals/package.json +8 -0
- package/test/fixtures/types/no-import-default-of-export-equals/tsconfig.json +21 -0
- package/test/fixtures/types/no-import-of-dev-dependencies/tsconfig.json +1 -0
- package/test/fixtures/types/no-old-dt-header/index.d.ts +14 -0
- package/test/fixtures/types/no-old-dt-header/index2.d.ts +2 -0
- package/test/fixtures/types/no-old-dt-header/no-old-dt-header-tests.ts +0 -0
- package/test/fixtures/types/no-old-dt-header/ok1.ts +2 -0
- package/test/fixtures/types/no-old-dt-header/ok2.d.ts +1 -0
- package/test/fixtures/types/no-old-dt-header/ok3.d.ts +1 -0
- package/test/fixtures/types/no-old-dt-header/ok4.d.ts +3 -0
- package/test/fixtures/types/no-old-dt-header/package.json +8 -0
- package/test/fixtures/types/no-old-dt-header/tsconfig.json +25 -0
- package/test/fixtures/types/no-relative-import-in-test/bad.d.ts +0 -0
- package/test/fixtures/types/no-relative-import-in-test/index.d.ts +0 -0
- package/test/fixtures/types/no-relative-import-in-test/no-relative-import-in-test-tests.ts +1 -0
- package/test/fixtures/types/no-relative-import-in-test/no-relative-import-in-test-tests2.ts +3 -0
- package/test/fixtures/types/no-relative-import-in-test/package.json +8 -0
- package/test/fixtures/types/no-relative-import-in-test/tsconfig.json +24 -0
- package/test/fixtures/types/no-relative-references/tsconfig.json +1 -0
- package/test/fixtures/types/no-relative-references/v1/tsconfig.json +1 -0
- package/test/fixtures/types/no-self-import/tsconfig.json +2 -1
- package/test/fixtures/types/no-single-declare-module/bad.d.ts +4 -0
- package/test/fixtures/types/no-single-declare-module/index.d.ts +2 -0
- package/test/fixtures/types/no-single-declare-module/index2.d.ts +2 -0
- package/test/fixtures/types/no-single-declare-module/index3.d.ts +1 -0
- package/test/fixtures/types/no-single-declare-module/no-single-declare-module-tests.ts +0 -0
- package/test/fixtures/types/no-single-declare-module/package.json +8 -0
- package/test/fixtures/types/no-single-declare-module/tsconfig.json +23 -0
- package/test/fixtures/types/no-single-element-tuple-type/bad.d.ts +1 -0
- package/test/fixtures/types/no-single-element-tuple-type/index.d.ts +5 -0
- package/test/fixtures/types/no-single-element-tuple-type/no-single-element-tuple-type-tests.ts +0 -0
- package/test/fixtures/types/no-single-element-tuple-type/package.json +8 -0
- package/test/fixtures/types/no-single-element-tuple-type/tsconfig.json +21 -0
- package/test/fixtures/types/no-unnecessary-generics/bad.d.ts +2 -0
- package/test/fixtures/types/no-unnecessary-generics/index.d.ts +7 -0
- package/test/fixtures/types/no-unnecessary-generics/no-unnecessary-generics-tests.ts +14 -0
- package/test/fixtures/types/no-unnecessary-generics/package.json +8 -0
- package/test/fixtures/types/no-unnecessary-generics/tsconfig.json +21 -0
- package/test/fixtures/types/no-useless-files/bad.d.ts +1 -0
- package/test/fixtures/types/no-useless-files/bad2.d.ts +0 -0
- package/test/fixtures/types/no-useless-files/bad3.d.ts +1 -0
- package/test/fixtures/types/no-useless-files/index.d.ts +1 -0
- package/test/fixtures/types/no-useless-files/index2.d.ts +1 -0
- package/test/fixtures/types/no-useless-files/index3.d.ts +1 -0
- package/test/fixtures/types/no-useless-files/no-useless-files-tests.ts +0 -0
- package/test/fixtures/types/no-useless-files/package.json +8 -0
- package/test/fixtures/types/no-useless-files/tsconfig.json +25 -0
- package/test/fixtures/types/other/tsconfig.json +1 -1
- package/test/fixtures/types/other/v1/tsconfig.json +1 -1
- package/test/fixtures/types/prefer-declare-function/bad.d.ts +9 -0
- package/test/fixtures/types/prefer-declare-function/index.d.ts +2 -0
- package/test/fixtures/types/prefer-declare-function/package.json +8 -0
- package/test/fixtures/types/prefer-declare-function/prefer-declare-function-tests.ts +0 -0
- package/test/fixtures/types/prefer-declare-function/tsconfig.json +21 -0
- package/test/fixtures/types/redundant-undefined/bad.d.ts +3 -0
- package/test/fixtures/types/redundant-undefined/index.d.ts +5 -0
- package/test/fixtures/types/redundant-undefined/package.json +8 -0
- package/test/fixtures/types/redundant-undefined/redundant-undefined-tests.ts +1 -0
- package/test/fixtures/types/redundant-undefined/tsconfig.json +21 -0
- package/test/fixtures/types/scoped__foo/tsconfig.json +1 -1
- package/test/fixtures/types/scoped__foo/v1/tsconfig.json +1 -1
- package/test/fixtures/types/scoped__no-declare-current-package/tsconfig.json +2 -1
- package/test/fixtures/types/scoped__no-relative-references/tsconfig.json +1 -0
- package/test/fixtures/types/scoped__no-relative-references/v1/tsconfig.json +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/bad1.d.ts +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/bad2.d.ts +3 -0
- package/test/fixtures/types/strict-export-declare-modifiers/bad3.d.ts +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/bad4.d.ts +3 -0
- package/test/fixtures/types/strict-export-declare-modifiers/bad5.d.ts +2 -0
- package/test/fixtures/types/strict-export-declare-modifiers/bad6.d.ts +2 -0
- package/test/fixtures/types/strict-export-declare-modifiers/bad7.d.ts +2 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good1.ts +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good2.d.ts +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good3.d.ts +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good4.d.ts +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good5.d.ts +1 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good6.ts +3 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good7.d.ts +2 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good8.d.ts +5 -0
- package/test/fixtures/types/strict-export-declare-modifiers/good9.d.ts +3 -0
- package/test/fixtures/types/strict-export-declare-modifiers/package.json +8 -0
- package/test/fixtures/types/strict-export-declare-modifiers/strict-export-declare-modifiers-tests.ts +0 -0
- package/test/fixtures/types/strict-export-declare-modifiers/tsconfig.json +35 -0
- package/test/util.test.ts +6 -1
- package/test/util.ts +3 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/test/export-just-namespace.test.ts +0 -68
- package/test/fixtureTester.ts +0 -63
- package/test/no-any-union.test.ts +0 -20
- package/test/no-bad-reference.test.ts +0 -127
- package/test/no-const-enum.test.ts +0 -20
- package/test/no-dead-reference.test.ts +0 -64
- package/test/no-declare-current-package.test.ts +0 -59
- package/test/no-import-default-of-export-equals.test.ts +0 -49
- package/test/no-import-of-dev-dependencies.test.ts +0 -27
- package/test/no-old-dt-header.test.ts +0 -69
- package/test/no-relative-import-in-test.test.ts +0 -27
- package/test/no-self-import.test.ts +0 -30
- package/test/no-single-declare-module.test.ts +0 -49
- package/test/no-single-element-tuple-type.test.ts +0 -26
- package/test/no-unnecessary-generics.test.ts +0 -152
- package/test/no-useless-files.test.ts +0 -40
- package/test/prefer-declare-function.test.ts +0 -64
- package/test/redundant-undefined.test.ts +0 -37
- package/test/strict-export-declare-modifiers.test.ts +0 -156
- package/test/tsconfig.no-declare-current-package.json +0 -11
- package/test/tsconfig.no-declare-current-package2.json +0 -11
- package/test/tsconfig.no-import-default-of-export-equals.json +0 -11
- package/test/tsconfig.no-relative-import-in-test.json +0 -14
- package/test/tsconfig.no-self-import.json +0 -7
- package/test/tsconfig.no-single-declare-module.json +0 -7
- package/test/tsconfig.test.json +0 -10
- /package/test/{abc.d.ts → fixtures/types/no-relative-import-in-test/abc.d.ts} +0 -0
- /package/test/{no-relative-import-in-test → fixtures/types/no-relative-import-in-test/no-relative-import-in-test}/abc.d.ts +0 -0
|
@@ -33,7 +33,7 @@ const rule = createRule({
|
|
|
33
33
|
schema: [],
|
|
34
34
|
},
|
|
35
35
|
create(context) {
|
|
36
|
-
const containingFileName = context.
|
|
36
|
+
const containingFileName = context.filename;
|
|
37
37
|
const typesPackage = findTypesPackage(containingFileName);
|
|
38
38
|
if (!typesPackage) {
|
|
39
39
|
return {};
|
|
@@ -46,7 +46,7 @@ const rule = createRule({
|
|
|
46
46
|
return name.startsWith(".") || name.startsWith(realNamePlusSlash);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
const ast = context.
|
|
49
|
+
const ast = context.sourceCode.ast;
|
|
50
50
|
const parserServices = ESLintUtils.getParserServices(context, true);
|
|
51
51
|
const sourceFile = parserServices.esTreeNodeToTSNodeMap.get(ast);
|
|
52
52
|
|
|
@@ -69,7 +69,7 @@ const rule = createRule({
|
|
|
69
69
|
}
|
|
70
70
|
for (const ref of imports(sourceFile)) {
|
|
71
71
|
if (isRelativeOrSelf(ref.text)) {
|
|
72
|
-
refs.push({ kind: "import", text: ref.text, range: ref });
|
|
72
|
+
refs.push({ kind: "import", text: ref.text, range: { pos: ref.getStart(), end: ref.getEnd() } });
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
|
|
@@ -140,8 +140,9 @@ function tsRangeToESLintLocation(range: ts.TextRange, sourceFile: ts.SourceFile)
|
|
|
140
140
|
const pos = sourceFile.getLineAndCharacterOfPosition(range.pos);
|
|
141
141
|
const end = sourceFile.getLineAndCharacterOfPosition(range.end);
|
|
142
142
|
return {
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
// line is 1 indexed, but column is 0 indexed. >.<
|
|
144
|
+
start: { line: pos.line + 1, column: pos.character },
|
|
145
|
+
end: { line: end.line + 1, column: end.character },
|
|
145
146
|
};
|
|
146
147
|
}
|
|
147
148
|
|
|
@@ -14,11 +14,11 @@ const rule = createRule({
|
|
|
14
14
|
schema: [],
|
|
15
15
|
},
|
|
16
16
|
create(context) {
|
|
17
|
-
const source = context.
|
|
17
|
+
const source = context.sourceCode;
|
|
18
18
|
if (source.ast.body.length) {
|
|
19
19
|
// 'm' flag makes it multiline, so `^` matches the beginning of any line.
|
|
20
20
|
// 'g' flag lets us set rgx.lastIndex
|
|
21
|
-
const rgx = /^\s*(\/\/\/ <reference)/gm;
|
|
21
|
+
const rgx = /^\s*(\/\/\/ <reference.*)/gm;
|
|
22
22
|
|
|
23
23
|
// Start search at the first statement. (`/// <reference>` before that is OK.)
|
|
24
24
|
rgx.lastIndex = source.ast.body[0].range?.[0] ?? 0;
|
|
@@ -33,7 +33,10 @@ const rule = createRule({
|
|
|
33
33
|
const start = match.index + match[0].length - length;
|
|
34
34
|
context.report({
|
|
35
35
|
messageId: "referenceAtTop",
|
|
36
|
-
loc:
|
|
36
|
+
loc: {
|
|
37
|
+
start: source.getLocFromIndex(start),
|
|
38
|
+
end: source.getLocFromIndex(start + match[1].length),
|
|
39
|
+
},
|
|
37
40
|
});
|
|
38
41
|
}
|
|
39
42
|
}
|
|
@@ -17,7 +17,7 @@ const rule = createRule({
|
|
|
17
17
|
schema: [],
|
|
18
18
|
},
|
|
19
19
|
create(context) {
|
|
20
|
-
const packageName = getTypesPackageForDeclarationFile(context.
|
|
20
|
+
const packageName = getTypesPackageForDeclarationFile(context.filename);
|
|
21
21
|
if (!packageName) {
|
|
22
22
|
return {};
|
|
23
23
|
}
|
|
@@ -34,7 +34,7 @@ const rule = createRule({
|
|
|
34
34
|
context.report({
|
|
35
35
|
messageId: "noDeclareCurrentPackage",
|
|
36
36
|
data: { text, preferred },
|
|
37
|
-
node,
|
|
37
|
+
node: node.id,
|
|
38
38
|
});
|
|
39
39
|
}
|
|
40
40
|
},
|
|
@@ -19,7 +19,7 @@ const rule = createRule({
|
|
|
19
19
|
create(context) {
|
|
20
20
|
const parserServices = ESLintUtils.getParserServices(context);
|
|
21
21
|
const checker = parserServices.program.getTypeChecker();
|
|
22
|
-
if (isDeclarationPath(context.
|
|
22
|
+
if (isDeclarationPath(context.filename)) {
|
|
23
23
|
return {
|
|
24
24
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
25
25
|
ImportDeclaration(node) {
|
|
@@ -18,11 +18,11 @@ const rule = createRule({
|
|
|
18
18
|
schema: [],
|
|
19
19
|
},
|
|
20
20
|
create(context) {
|
|
21
|
-
if (!isDeclarationPath(context.
|
|
21
|
+
if (!isDeclarationPath(context.filename)) {
|
|
22
22
|
return {};
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
const info = findTypesPackage(context.
|
|
25
|
+
const info = findTypesPackage(context.filename);
|
|
26
26
|
if (!info) {
|
|
27
27
|
return {};
|
|
28
28
|
}
|
|
@@ -41,7 +41,7 @@ const rule = createRule({
|
|
|
41
41
|
})
|
|
42
42
|
.filter((dep) => dep !== info.realName && packageJson.dependencies?.[dep] === undefined); // TODO(jakebailey): add test for this case from https://github.com/microsoft/DefinitelyTyped-tools/pull/773
|
|
43
43
|
|
|
44
|
-
commentsMatching(context.
|
|
44
|
+
commentsMatching(context.sourceCode, /<reference\s+types\s*=\s*"(.+)"\s*\/>/, (ref, comment) => {
|
|
45
45
|
if (devDeps.includes(ref)) {
|
|
46
46
|
report(comment, "noReferenceOfDevDependencies");
|
|
47
47
|
}
|
|
@@ -16,9 +16,9 @@ const rule = createRule({
|
|
|
16
16
|
schema: [],
|
|
17
17
|
},
|
|
18
18
|
create(context) {
|
|
19
|
-
const text = context.
|
|
19
|
+
const text = context.sourceCode.text;
|
|
20
20
|
if (
|
|
21
|
-
isDeclarationPath(context.
|
|
21
|
+
isDeclarationPath(context.filename) &&
|
|
22
22
|
text.indexOf("// Type definitions for ") === 0 &&
|
|
23
23
|
text.indexOf("// Definitions by: ") > 0
|
|
24
24
|
) {
|
|
@@ -15,7 +15,7 @@ const rule = createRule({
|
|
|
15
15
|
schema: [],
|
|
16
16
|
},
|
|
17
17
|
create(context) {
|
|
18
|
-
const packageName = getTypesPackageForDeclarationFile(context.
|
|
18
|
+
const packageName = getTypesPackageForDeclarationFile(context.filename);
|
|
19
19
|
if (!packageName) {
|
|
20
20
|
return {};
|
|
21
21
|
}
|
|
@@ -19,7 +19,7 @@ const rule = createRule({
|
|
|
19
19
|
name: "no-single-declare-module",
|
|
20
20
|
create(context) {
|
|
21
21
|
const services = ESLintUtils.getParserServices(context);
|
|
22
|
-
const sourceFile = services.esTreeNodeToTSNodeMap.get(context.
|
|
22
|
+
const sourceFile = services.esTreeNodeToTSNodeMap.get(context.sourceCode.ast);
|
|
23
23
|
|
|
24
24
|
// If it's an external module, any module declarations inside are augmentations.
|
|
25
25
|
if (ts.isExternalModule(sourceFile)) {
|
|
@@ -46,7 +46,7 @@ const rule = createRule({
|
|
|
46
46
|
if (moduleDeclaration) {
|
|
47
47
|
context.report({
|
|
48
48
|
messageId: "oneModuleDeclaration",
|
|
49
|
-
node: services.tsNodeToESTreeNodeMap.get(moduleDeclaration),
|
|
49
|
+
node: services.tsNodeToESTreeNodeMap.get(moduleDeclaration.name),
|
|
50
50
|
});
|
|
51
51
|
}
|
|
52
52
|
|
|
@@ -16,7 +16,7 @@ const rule = createRule({
|
|
|
16
16
|
create(context) {
|
|
17
17
|
const {
|
|
18
18
|
ast: { tokens, comments },
|
|
19
|
-
} = context.
|
|
19
|
+
} = context.sourceCode;
|
|
20
20
|
|
|
21
21
|
if (tokens.length === 0) {
|
|
22
22
|
if (comments.length === 0) {
|
|
@@ -24,7 +24,7 @@ const rule = createRule({
|
|
|
24
24
|
} else {
|
|
25
25
|
const referenceRegExp = /^\/\s*<reference\s*(types|path)\s*=\s*["|'](.*)["|']/;
|
|
26
26
|
let noReferenceFound = true;
|
|
27
|
-
commentsMatching(context.
|
|
27
|
+
commentsMatching(context.sourceCode, referenceRegExp, () => {
|
|
28
28
|
noReferenceFound = false;
|
|
29
29
|
});
|
|
30
30
|
|
|
@@ -22,7 +22,7 @@ const rule = createRule({
|
|
|
22
22
|
"VariableDeclaration > VariableDeclarator"(node: TSESTree.VariableDeclarator) {
|
|
23
23
|
if (
|
|
24
24
|
node.id.typeAnnotation?.typeAnnotation.type === AST_NODE_TYPES.TSFunctionType &&
|
|
25
|
-
isDeclarationPath(context.
|
|
25
|
+
isDeclarationPath(context.filename)
|
|
26
26
|
) {
|
|
27
27
|
context.report({
|
|
28
28
|
messageId: "variableFunction",
|
|
@@ -30,7 +30,7 @@ const rule = createRule({
|
|
|
30
30
|
// to switch it to using TSESTree nodes like other ESLint rules.
|
|
31
31
|
create(context) {
|
|
32
32
|
const services = ESLintUtils.getParserServices(context, true);
|
|
33
|
-
const sourceCode = context.
|
|
33
|
+
const sourceCode = context.sourceCode;
|
|
34
34
|
const sourceFile = services.esTreeNodeToTSNodeMap.get(sourceCode.ast);
|
|
35
35
|
|
|
36
36
|
const isExternal =
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
types/export-just-namespace/bad1.d.ts
|
|
2
|
+
1:1 error Instead of `export =`-ing a namespace, use the body of the namespace as the module body @definitelytyped/export-just-namespace
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/export-just-namespace/bad1.d.ts ====
|
|
7
|
+
|
|
8
|
+
export = Stuff;
|
|
9
|
+
~~~~~~~~~~~~~~~
|
|
10
|
+
!!! @definitelytyped/export-just-namespace: Instead of `export =`-ing a namespace, use the body of the namespace as the module body.
|
|
11
|
+
namespace Stuff {}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
types/export-just-namespace/bad2.d.ts
|
|
2
|
+
2:1 error Instead of `export =`-ing a namespace, use the body of the namespace as the module body @definitelytyped/export-just-namespace
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/export-just-namespace/bad2.d.ts ====
|
|
7
|
+
|
|
8
|
+
namespace Stuff {}
|
|
9
|
+
export = Stuff;
|
|
10
|
+
~~~~~~~~~~~~~~~
|
|
11
|
+
!!! @definitelytyped/export-just-namespace: Instead of `export =`-ing a namespace, use the body of the namespace as the module body.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
types/export-just-namespace/bad3.d.ts
|
|
2
|
+
3:1 error Instead of `export =`-ing a namespace, use the body of the namespace as the module body @definitelytyped/export-just-namespace
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/export-just-namespace/bad3.d.ts ====
|
|
7
|
+
|
|
8
|
+
namespace Stuff {}
|
|
9
|
+
const other = "code";
|
|
10
|
+
export = Stuff;
|
|
11
|
+
~~~~~~~~~~~~~~~
|
|
12
|
+
!!! @definitelytyped/export-just-namespace: Instead of `export =`-ing a namespace, use the body of the namespace as the module body.
|
package/test/__file_snapshots__/types/export-just-namespace/export-just-namespace-tests.ts.lint
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
types/export-just-namespace/export-just-namespace-tests.ts
|
|
2
|
+
1:1 error File has no content @definitelytyped/no-useless-files
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/export-just-namespace/export-just-namespace-tests.ts ====
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
~
|
|
10
|
+
!!! @definitelytyped/no-useless-files: File has no content.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
types/export-just-namespace/good9.d.ts
|
|
2
|
+
3:25 error Type parameter U is used only once @definitelytyped/no-unnecessary-generics
|
|
3
|
+
3:28 error Type parameter S is used only once @definitelytyped/no-unnecessary-generics
|
|
4
|
+
|
|
5
|
+
✖ 2 problems (2 errors, 0 warnings)
|
|
6
|
+
|
|
7
|
+
==== types/export-just-namespace/good9.d.ts ====
|
|
8
|
+
|
|
9
|
+
declare namespace Second {}
|
|
10
|
+
export = Second
|
|
11
|
+
declare function Second<U, S>(s: U): S
|
|
12
|
+
~
|
|
13
|
+
!!! @definitelytyped/no-unnecessary-generics: Type parameter U is used only once.
|
|
14
|
+
~
|
|
15
|
+
!!! @definitelytyped/no-unnecessary-generics: Type parameter S is used only once.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
types/no-any-union/bad.d.ts
|
|
2
|
+
1:17 error Including `any` in a union will override all other members of the union @definitelytyped/no-any-union
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/no-any-union/bad.d.ts ====
|
|
7
|
+
|
|
8
|
+
export const y: string | any;
|
|
9
|
+
~~~~~~~~~~~~
|
|
10
|
+
!!! @definitelytyped/no-any-union: Including `any` in a union will override all other members of the union.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
types/no-any-union/no-any-union-tests.ts
|
|
2
|
+
1:17 error Including `any` in a union will override all other members of the union @definitelytyped/no-any-union
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/no-any-union/no-any-union-tests.ts ====
|
|
7
|
+
|
|
8
|
+
export const z: string | any;
|
|
9
|
+
~~~~~~~~~~~~
|
|
10
|
+
!!! @definitelytyped/no-any-union: Including `any` in a union will override all other members of the union.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
types/no-bad-reference/index.d.ts
|
|
2
|
+
1:22 error The reference "../other" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
3
|
+
2:22 error The reference "./v11" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
4
|
+
3:22 error The reference "./v11/index" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
5
|
+
4:22 error The reference "./v11/subdir/file" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
6
|
+
5:22 error The reference "./v0.1" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
7
|
+
6:22 error The reference "./v0.1/index" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
8
|
+
13:22 error Use forward slashes in paths @definitelytyped/no-bad-reference
|
|
9
|
+
|
|
10
|
+
✖ 7 problems (7 errors, 0 warnings)
|
|
11
|
+
|
|
12
|
+
==== types/no-bad-reference/index.d.ts ====
|
|
13
|
+
|
|
14
|
+
/// <reference path="../other" />
|
|
15
|
+
~~~~~~~~
|
|
16
|
+
!!! @definitelytyped/no-bad-reference: The reference "../other" resolves outside of the package. Use a global reference to reference other packages.
|
|
17
|
+
/// <reference path="./v11" />
|
|
18
|
+
~~~~~
|
|
19
|
+
!!! @definitelytyped/no-bad-reference: The reference "./v11" resolves outside of the package. Use a global reference to reference other packages.
|
|
20
|
+
/// <reference path="./v11/index" />
|
|
21
|
+
~~~~~~~~~~~
|
|
22
|
+
!!! @definitelytyped/no-bad-reference: The reference "./v11/index" resolves outside of the package. Use a global reference to reference other packages.
|
|
23
|
+
/// <reference path="./v11/subdir/file" />
|
|
24
|
+
~~~~~~~~~~~~~~~~~
|
|
25
|
+
!!! @definitelytyped/no-bad-reference: The reference "./v11/subdir/file" resolves outside of the package. Use a global reference to reference other packages.
|
|
26
|
+
/// <reference path="./v0.1" />
|
|
27
|
+
~~~~~~
|
|
28
|
+
!!! @definitelytyped/no-bad-reference: The reference "./v0.1" resolves outside of the package. Use a global reference to reference other packages.
|
|
29
|
+
/// <reference path="./v0.1/index" />
|
|
30
|
+
~~~~~~~~~~~~
|
|
31
|
+
!!! @definitelytyped/no-bad-reference: The reference "./v0.1/index" resolves outside of the package. Use a global reference to reference other packages.
|
|
32
|
+
/// <reference path="other" />
|
|
33
|
+
/// <reference path="./other" />
|
|
34
|
+
/// <reference path="./v1gardenpath" />
|
|
35
|
+
/// <reference path="./v1verb/other" />
|
|
36
|
+
/// <reference path="other" />
|
|
37
|
+
/// <reference path="other2" />
|
|
38
|
+
/// <reference path="..\index.d.ts" />
|
|
39
|
+
~~~~~~~~~~~~~
|
|
40
|
+
!!! @definitelytyped/no-bad-reference: Use forward slashes in paths.
|
|
41
|
+
|
|
42
|
+
// unrelated comment
|
|
43
|
+
/// similar (reference path) comment
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
types/no-bad-reference/no-bad-reference-tests.ts
|
|
2
|
+
1:22 error The path reference "../other" is disallowed outside declaration files. Use "<reference types>" or include the file in tsconfig instead @definitelytyped/no-bad-reference
|
|
3
|
+
2:22 error The path reference "other" is disallowed outside declaration files. Use "<reference types>" or include the file in tsconfig instead @definitelytyped/no-bad-reference
|
|
4
|
+
|
|
5
|
+
✖ 2 problems (2 errors, 0 warnings)
|
|
6
|
+
|
|
7
|
+
==== types/no-bad-reference/no-bad-reference-tests.ts ====
|
|
8
|
+
|
|
9
|
+
/// <reference path="../other" />
|
|
10
|
+
~~~~~~~~
|
|
11
|
+
!!! @definitelytyped/no-bad-reference: The path reference "../other" is disallowed outside declaration files. Use "<reference types>" or include the file in tsconfig instead.
|
|
12
|
+
/// <reference path="other" />
|
|
13
|
+
~~~~~
|
|
14
|
+
!!! @definitelytyped/no-bad-reference: The path reference "other" is disallowed outside declaration files. Use "<reference types>" or include the file in tsconfig instead.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
types/no-bad-reference/v0.1/index.d.ts
|
|
2
|
+
1:22 error The reference "../../foo/index.d.ts" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
3
|
+
2:22 error The reference "../v1/index.d.ts" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
4
|
+
3:22 error The reference "../../foo/v0.1/index.d.ts" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
5
|
+
4:22 error The reference "../index.d.ts" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
6
|
+
6:22 error The import "../../foo" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
7
|
+
7:23 error The import "../v0.1" resolves to the current package, but uses relative paths @definitelytyped/no-bad-reference
|
|
8
|
+
8:23 error The import "../../foo/v0.1" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
9
|
+
9:22 error The import "../index" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
10
|
+
14:22 error The import "../index" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
11
|
+
|
|
12
|
+
✖ 9 problems (9 errors, 0 warnings)
|
|
13
|
+
|
|
14
|
+
==== types/no-bad-reference/v0.1/index.d.ts ====
|
|
15
|
+
|
|
16
|
+
/// <reference path="../../foo/index.d.ts" />
|
|
17
|
+
~~~~~~~~~~~~~~~~~~~~
|
|
18
|
+
!!! @definitelytyped/no-bad-reference: The reference "../../foo/index.d.ts" resolves outside of the package. Use a global reference to reference other packages.
|
|
19
|
+
/// <reference path="../v1/index.d.ts" />
|
|
20
|
+
~~~~~~~~~~~~~~~~
|
|
21
|
+
!!! @definitelytyped/no-bad-reference: The reference "../v1/index.d.ts" resolves outside of the package. Use a global reference to reference other packages.
|
|
22
|
+
/// <reference path="../../foo/v0.1/index.d.ts" />
|
|
23
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
24
|
+
!!! @definitelytyped/no-bad-reference: The reference "../../foo/v0.1/index.d.ts" resolves outside of the package. Use a global reference to reference other packages.
|
|
25
|
+
/// <reference path="../index.d.ts" />
|
|
26
|
+
~~~~~~~~~~~~~
|
|
27
|
+
!!! @definitelytyped/no-bad-reference: The reference "../index.d.ts" resolves outside of the package. Use a global reference to reference other packages.
|
|
28
|
+
|
|
29
|
+
import * as foo from "../../foo";
|
|
30
|
+
~~~~~~~~~~~
|
|
31
|
+
!!! @definitelytyped/no-bad-reference: The import "../../foo" resolves outside of the package. Use a bare import to reference other packages.
|
|
32
|
+
import * as foo2 from "../v0.1";
|
|
33
|
+
~~~~~~~~~
|
|
34
|
+
!!! @definitelytyped/no-bad-reference: The import "../v0.1" resolves to the current package, but uses relative paths.
|
|
35
|
+
import * as foo3 from "../../foo/v0.1";
|
|
36
|
+
~~~~~~~~~~~~~~~~
|
|
37
|
+
!!! @definitelytyped/no-bad-reference: The import "../../foo/v0.1" resolves outside of the package. Use a bare import to reference other packages.
|
|
38
|
+
import * as va4 from "../index";
|
|
39
|
+
~~~~~~~~~~
|
|
40
|
+
!!! @definitelytyped/no-bad-reference: The import "../index" resolves outside of the package. Use a bare import to reference other packages.
|
|
41
|
+
|
|
42
|
+
declare module "no-relative-references" {
|
|
43
|
+
import A = require("no-relative-references/blah"); // Okay; relative
|
|
44
|
+
import B = require("no-relative-references/v0.1"); // Okay; no versioned dir here
|
|
45
|
+
import C = require("../index"); // Bad; parent dir
|
|
46
|
+
~~~~~~~~~~
|
|
47
|
+
!!! @definitelytyped/no-bad-reference: The import "../index" resolves outside of the package. Use a bare import to reference other packages.
|
|
48
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
types/no-bad-reference/v0.1/no-bad-reference-tests.ts
|
|
2
|
+
1:1 error File has no content @definitelytyped/no-useless-files
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/no-bad-reference/v0.1/no-bad-reference-tests.ts ====
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
~
|
|
10
|
+
!!! @definitelytyped/no-useless-files: File has no content.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
types/no-bad-reference/v11/index.d.ts
|
|
2
|
+
1:22 error The reference "../../foo/index.d.ts" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
3
|
+
2:22 error The reference "../v11/index.d.ts" resolves to the current package, but uses relative paths @definitelytyped/no-bad-reference
|
|
4
|
+
3:22 error The reference "../../foo/v1/index.d.ts" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
5
|
+
4:22 error The reference "../index.d.ts" resolves outside of the package. Use a global reference to reference other packages @definitelytyped/no-bad-reference
|
|
6
|
+
6:22 error The import "../../foo" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
7
|
+
7:23 error The import "../v11" resolves to the current package, but uses relative paths @definitelytyped/no-bad-reference
|
|
8
|
+
8:23 error The import "../../foo/v11" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
9
|
+
9:22 error The import "../index" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
10
|
+
14:22 error The import "../index" resolves outside of the package. Use a bare import to reference other packages @definitelytyped/no-bad-reference
|
|
11
|
+
|
|
12
|
+
✖ 9 problems (9 errors, 0 warnings)
|
|
13
|
+
|
|
14
|
+
==== types/no-bad-reference/v11/index.d.ts ====
|
|
15
|
+
|
|
16
|
+
/// <reference path="../../foo/index.d.ts" />
|
|
17
|
+
~~~~~~~~~~~~~~~~~~~~
|
|
18
|
+
!!! @definitelytyped/no-bad-reference: The reference "../../foo/index.d.ts" resolves outside of the package. Use a global reference to reference other packages.
|
|
19
|
+
/// <reference path="../v11/index.d.ts" />
|
|
20
|
+
~~~~~~~~~~~~~~~~~
|
|
21
|
+
!!! @definitelytyped/no-bad-reference: The reference "../v11/index.d.ts" resolves to the current package, but uses relative paths.
|
|
22
|
+
/// <reference path="../../foo/v1/index.d.ts" />
|
|
23
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
|
24
|
+
!!! @definitelytyped/no-bad-reference: The reference "../../foo/v1/index.d.ts" resolves outside of the package. Use a global reference to reference other packages.
|
|
25
|
+
/// <reference path="../index.d.ts" />
|
|
26
|
+
~~~~~~~~~~~~~
|
|
27
|
+
!!! @definitelytyped/no-bad-reference: The reference "../index.d.ts" resolves outside of the package. Use a global reference to reference other packages.
|
|
28
|
+
|
|
29
|
+
import * as foo from "../../foo";
|
|
30
|
+
~~~~~~~~~~~
|
|
31
|
+
!!! @definitelytyped/no-bad-reference: The import "../../foo" resolves outside of the package. Use a bare import to reference other packages.
|
|
32
|
+
import * as foo2 from "../v11";
|
|
33
|
+
~~~~~~~~
|
|
34
|
+
!!! @definitelytyped/no-bad-reference: The import "../v11" resolves to the current package, but uses relative paths.
|
|
35
|
+
import * as foo3 from "../../foo/v11";
|
|
36
|
+
~~~~~~~~~~~~~~~
|
|
37
|
+
!!! @definitelytyped/no-bad-reference: The import "../../foo/v11" resolves outside of the package. Use a bare import to reference other packages.
|
|
38
|
+
import * as va4 from "../index";
|
|
39
|
+
~~~~~~~~~~
|
|
40
|
+
!!! @definitelytyped/no-bad-reference: The import "../index" resolves outside of the package. Use a bare import to reference other packages.
|
|
41
|
+
|
|
42
|
+
declare module "no-relative-references" {
|
|
43
|
+
import A = require("no-relative-references/blah"); // Okay; relative
|
|
44
|
+
import B = require("no-relative-references/v11"); // Okay; no versioned dir here
|
|
45
|
+
import C = require("../index"); // Bad; parent dir
|
|
46
|
+
~~~~~~~~~~
|
|
47
|
+
!!! @definitelytyped/no-bad-reference: The import "../index" resolves outside of the package. Use a bare import to reference other packages.
|
|
48
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
types/no-bad-reference/v11/no-bad-reference-tests.ts
|
|
2
|
+
1:1 error File has no content @definitelytyped/no-useless-files
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/no-bad-reference/v11/no-bad-reference-tests.ts ====
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
~
|
|
10
|
+
!!! @definitelytyped/no-useless-files: File has no content.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
types/no-const-enum/bad.d.ts
|
|
2
|
+
1:1 error Use of `const enum` is forbidden @definitelytyped/no-const-enum
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/no-const-enum/bad.d.ts ====
|
|
7
|
+
|
|
8
|
+
const enum E { }
|
|
9
|
+
~~~~~~~~~~~~~~~~
|
|
10
|
+
!!! @definitelytyped/no-const-enum: Use of `const enum` is forbidden.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
types/no-const-enum/no-const-enum-tests.ts
|
|
2
|
+
1:1 error File has no content @definitelytyped/no-useless-files
|
|
3
|
+
|
|
4
|
+
✖ 1 problem (1 error, 0 warnings)
|
|
5
|
+
|
|
6
|
+
==== types/no-const-enum/no-const-enum-tests.ts ====
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
~
|
|
10
|
+
!!! @definitelytyped/no-useless-files: File has no content.
|