eslint-plugin-deprecation icon indicating copy to clipboard operation
eslint-plugin-deprecation copied to clipboard

ESLint rule that reports usage of deprecated code

Results 17 eslint-plugin-deprecation issues
Sort by recently updated
recently updated
newest added

Running this plugin results in out of memory error ``` [93771:0x110040000] 29282 ms: Scavenge 4043.7 (4125.2) -> 4040.7 (4126.4) MB, 13.2 / 0.0 ms (average mu = 0.870, current mu...

needs more info

For example, this would not cause anything to be flagged: ```ts /** * @deprecated */ function foo() { call_to_deprecated_function(); } ``` But if `@deprecated` is removed from `foo`, then `call_to_deprecated_function`...

I read the comment before creating the issue, but I have a small hope that somebody can help me :-) I have the following behavior: * VS Code correctly finds...

Adds `@typescript-eslint/utils@7` as an allowed version, as both 6 and 7 work with this package. Adds a `meta` per https://eslint.org/docs/latest/extend/plugin-migration-flat-config#adding-plugin-meta-information as a non-breaking change. Adding in the `meta` actually fixes...

Separately from #78: ESLint 8 already supports flat config, in advance of ESLint 9. Would a small PR that adds in flat config before the full #79 lands be of...

This error pops up when I try and use `projectService` configurations in my `@typescript-eslint/parser` ``` { files: ["**/*.ts", "**/*.tsx"], parser: "@typescript-eslint/parser", parserOptions: { ecmaVersion: "latest", projectService: { defaultProject: "./tsconfig.json", },...

I glanced over the documentation but didn't immediately notice anything. There are some annoyances that show up from third party packages - for example google maps deprecating the "old" marker...