Skip to content

Commit 20e61cf

Browse files
committed
update after rebasing
1 parent 00a3b26 commit 20e61cf

File tree

5 files changed

+93
-30
lines changed

5 files changed

+93
-30
lines changed

tests/eslint/eslint.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { fixupPluginRules } from '@eslint/compat';
12
import globals from 'globals';
23
import confusingBrowserGlobals from 'confusing-browser-globals';
34
import parserJSONC from 'jsonc-eslint-parser';
@@ -23,10 +24,12 @@ import pluginRegExp from 'eslint-plugin-regexp';
2324
import pluginSonarJS from 'eslint-plugin-sonarjs';
2425
import pluginStylistic from '@stylistic/eslint-plugin';
2526
import pluginTypeScript from '@typescript-eslint/eslint-plugin';
26-
import pluginTSDoc from 'eslint-plugin-tsdoc';
27+
import $pluginTSDoc from 'eslint-plugin-tsdoc';
2728
import pluginUnicorn from 'eslint-plugin-unicorn';
2829
import { yaml as pluginYaml } from 'eslint-yaml';
2930

31+
const pluginTSDoc = fixupPluginRules($pluginTSDoc);
32+
3033
const PACKAGES_NODE_VERSIONS = '^20.19';
3134
const DEV_NODE_VERSIONS = '^20.19';
3235

tests/eslint/package-lock.json

Lines changed: 63 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/eslint/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "tests/eslint",
33
"type": "module",
44
"devDependencies": {
5+
"@eslint/compat": "^2.0.2",
56
"@eslint/markdown": "^7.5.1",
67
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
78
"@stylistic/eslint-plugin": "^5.7.1",

tests/type-definitions/package-lock.json

Lines changed: 21 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"name": "tests/type-definitions"
2+
"name": "tests/type-definitions",
3+
"devDependencies": {
4+
"@types/node": "^25.2.2"
5+
}
36
}

0 commit comments

Comments
 (0)