astro-eslint-parser 0.9.4 → 0.9.5

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/lib/index.js CHANGED
@@ -2084,7 +2084,9 @@ function parseForESLint(code, options) {
2084
2084
  propsVariable.identifiers[0],
2085
2085
  propsVariable,
2086
2086
  scope,
2087
- {}
2087
+ {
2088
+ read: true
2089
+ }
2088
2090
  );
2089
2091
  }
2090
2092
  const astroGlobalReferences = scope.through.filter(
package/lib/index.mjs CHANGED
@@ -2058,7 +2058,9 @@ function parseForESLint(code, options) {
2058
2058
  propsVariable.identifiers[0],
2059
2059
  propsVariable,
2060
2060
  scope,
2061
- {}
2061
+ {
2062
+ read: true
2063
+ }
2062
2064
  );
2063
2065
  }
2064
2066
  const astroGlobalReferences = scope.through.filter(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-eslint-parser",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "description": "Astro component parser for ESLint",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.mjs",