Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion explorer-v2/src/lib/RulesSettings.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
})
);
}}
aria-label="expand/collapse"
>
<svg xmlns="http://www.w3.org/2000/svg" height="10" viewBox="0 0 10 10" width="10">
<path d="M2.5 10l5-5-5-5v10z" fill="#ddd" />
Expand Down Expand Up @@ -88,7 +89,11 @@
/>
{rule.ruleId}
</label>
<a href={rule.url} target="_blank" rel="noopener noreferrer"
<a
href={rule.url}
target="_blank"
rel="noopener noreferrer"
aria-label="open in new tab"
><svg
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,17 @@
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@changesets/cli": "^2.27.9",
"@changesets/get-release-plan": "^4.0.4",
"@ota-meshi/eslint-plugin": "^0.15.3",
"@types/benchmark": "^2.1.5",
"@types/chai": "^4.3.19",
"@types/chai": "^4.3.20",
"@types/eslint": "^9.6.1",
"@types/eslint-scope": "^3.7.7",
"@types/eslint-visitor-keys": "^3.3.0",
"@types/estree": "^1.0.5",
"@types/mocha": "^10.0.8",
"@types/node": "^20.16.5",
"@types/estree": "^1.0.6",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.11",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "~7.18.0",
Expand All @@ -83,31 +83,31 @@
"env-cmd": "^10.1.0",
"esbuild": "^0.23.1",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-json-schema-validator": "^5.1.2",
"eslint-plugin-json-schema-validator": "^5.1.3",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-node-dependencies": "^0.12.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-svelte": "^2.43.0",
"eslint-plugin-svelte": "^2.44.1",
"eslint-plugin-yml": "^1.14.0",
"estree-walker": "^3.0.3",
"locate-character": "^3.0.0",
"magic-string": "^0.30.11",
"magic-string": "^0.30.12",
"mocha": "^10.7.3",
"mocha-chai-jest-snapshot": "^1.1.6",
"nyc": "^17.0.0",
"nyc": "^17.1.0",
"prettier": "~3.3.3",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-svelte": "^3.2.7",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"svelte": "^5.0.0-next.245",
"svelte2tsx": "^0.7.19",
"typescript": "~5.6.2",
"svelte": "^5.0.0-next.264",
"svelte2tsx": "^0.7.22",
"typescript": "~5.6.3",
"typescript-eslint-parser-for-extra-files": "^0.7.0"
},
"publishConfig": {
Expand Down
4 changes: 3 additions & 1 deletion src/parser/analyze-scope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ export function analyzePropsScope(
}
} else {
for (const spec of node.specifiers) {
addPropReference(spec.local, moduleScope);
if (spec.local.type !== "Literal") {
addPropReference(spec.local, moduleScope);
}
}
}
} else if (node.type === "VariableDeclaration") {
Expand Down
Loading