eslint-plugin-react-doctor 0.2.10 → 0.2.11-dev.f036b0f

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 CHANGED
@@ -6,7 +6,9 @@ interface EslintRuleContext {
6
6
  node: EsTreeNode;
7
7
  message: string;
8
8
  }) => void;
9
- getFilename?: () => string;
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
@@ -24,7 +24,7 @@ const buildFlatConfig = (configName, ruleSet) => ({
24
24
  const eslintPlugin = {
25
25
  meta: {
26
26
  name: PLUGIN_NAMESPACE,
27
- version: "0.2.10"
27
+ version: "0.2.11-dev.f036b0f"
28
28
  },
29
29
  rules: eslintShapedRules,
30
30
  configs: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-doctor",
3
- "version": "0.2.10",
3
+ "version": "0.2.11-dev.f036b0f",
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.10"
44
+ "oxlint-plugin-react-doctor": "0.2.11-dev.f036b0f"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/node": "^25.6.0"