You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
w(node,'a11y_unknown_aria_attribute',`${suggestion ? `Unknown aria attribute 'aria-${attribute}'. Did you mean '${suggestion}'?` : `Unknown aria attribute 'aria-${attribute}'`}\nhttps://svelte.dev/e/a11y_unknown_aria_attribute`);
w(node,'a11y_unknown_role',`${suggestion ? `Unknown role '${role}'. Did you mean '${suggestion}'?` : `Unknown role '${role}'`}\nhttps://svelte.dev/e/a11y_unknown_role`);
506
+
w(node,'a11y_unknown_role',`${suggestion
507
+
? `Unknown role '${role}'. Did you mean '${suggestion}'?`
508
+
: `Unknown role '${role}'`}\nhttps://svelte.dev/e/a11y_unknown_role`);
510
509
}
511
510
512
511
/**
@@ -534,7 +533,9 @@ export function legacy_code(node, code, suggestion) {
534
533
* @param {string | undefined | null} [suggestion]
535
534
*/
536
535
exportfunctionunknown_code(node,code,suggestion){
537
-
w(node,'unknown_code',`${suggestion ? `\`${code}\` is not a recognised code (did you mean \`${suggestion}\`?)` : `\`${code}\` is not a recognised code`}\nhttps://svelte.dev/e/unknown_code`);
536
+
w(node,'unknown_code',`${suggestion
537
+
? `\`${code}\` is not a recognised code (did you mean \`${suggestion}\`?)`
538
+
: `\`${code}\` is not a recognised code`}\nhttps://svelte.dev/e/unknown_code`);
0 commit comments