astro-eslint-parser 0.0.5 → 0.0.6

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.
@@ -107,9 +107,6 @@ function fixLocations(node, code) {
107
107
  node.type === "element" ||
108
108
  node.type === "component" ||
109
109
  node.type === "custom-element") {
110
- if (!node.position.end) {
111
- return;
112
- }
113
110
  const closeTagStart = tokenIndexSafe(code, `</${node.name}`, start);
114
111
  if (closeTagStart != null) {
115
112
  start = closeTagStart + 2 + node.name.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-eslint-parser",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Astro parser for ESLint",
5
5
  "main": "lib/index.js",
6
6
  "files": [