eslint-plugin-react-doctor 0.2.10 → 0.2.11-dev.d0f5206
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/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,9 @@ interface EslintRuleContext {
|
|
|
6
6
|
node: EsTreeNode;
|
|
7
7
|
message: string;
|
|
8
8
|
}) => void;
|
|
9
|
-
|
|
9
|
+
readonly filename?: string;
|
|
10
|
+
/** @deprecated Use `filename`. Kept only for host compatibility. */
|
|
11
|
+
getFilename?: () => string | undefined;
|
|
10
12
|
}
|
|
11
13
|
interface EslintRuleMeta {
|
|
12
14
|
type: "problem" | "suggestion" | "layout";
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-doctor",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11-dev.d0f5206",
|
|
4
4
|
"description": "ESLint plugin for React Doctor: diagnose React codebases for security, performance, correctness, accessibility, bundle-size, and architecture issues",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"accessibility",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"oxlint-plugin-react-doctor": "0.2.
|
|
44
|
+
"oxlint-plugin-react-doctor": "0.2.11-dev.d0f5206"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^25.6.0"
|