Files
headroom/frontend/node_modules/eslint-plugin-svelte/lib/rules/shorthand-directive.js
Santhosh Janardhanan de2d83092e feat: Reinitialize frontend with SvelteKit and TypeScript
- Delete old Vite+Svelte frontend
- Initialize new SvelteKit project with TypeScript
- Configure Tailwind CSS v4 + DaisyUI
- Implement JWT authentication with auto-refresh
- Create login page with form validation (Zod)
- Add protected route guards
- Update Docker configuration for single-stage build
- Add E2E tests with Playwright (6/11 passing)
- Fix Svelte 5 reactivity with $state() runes

Known issues:
- 5 E2E tests failing (timing/async issues)
- Token refresh implementation needs debugging
- Validation error display timing
2026-02-17 16:19:59 -05:00

111 lines
3.8 KiB
JavaScript

import { createRule } from '../utils/index.js';
import { getAttributeValueQuoteAndRange } from '../utils/ast-utils.js';
export default createRule('shorthand-directive', {
meta: {
docs: {
description: 'enforce use of shorthand syntax in directives',
category: 'Stylistic Issues',
recommended: false,
conflictWithPrettier: true
},
fixable: 'code',
schema: [
{
type: 'object',
properties: {
prefer: { enum: ['always', 'never'] }
},
additionalProperties: false
}
],
messages: {
expectedShorthand: 'Expected shorthand directive.',
expectedRegular: 'Expected regular directive syntax.'
},
type: 'layout'
},
create(context) {
const sourceCode = context.sourceCode;
const always = context.options[0]?.prefer !== 'never';
/** Report for always */
function reportForAlways(node) {
context.report({
node,
messageId: 'expectedShorthand',
*fix(fixer) {
const quoteAndRange = getAttributeValueQuoteAndRange(node, sourceCode);
if (quoteAndRange) {
yield fixer.remove(sourceCode.getTokenBefore(quoteAndRange.firstToken));
yield fixer.removeRange(quoteAndRange.range);
}
}
});
}
/** Report for never */
function reportForNever(node) {
context.report({
node,
messageId: 'expectedRegular',
*fix(fixer) {
yield fixer.insertTextAfter(node.key.name, `={${node.key.name.name}}`);
}
});
}
return {
SvelteDirective(node) {
if (node.kind !== 'Binding' && node.kind !== 'Class') {
return;
}
const expression = node.expression;
if (!expression ||
expression.type !== 'Identifier' ||
node.key.name.name !== expression.name) {
// Cannot use shorthand
return;
}
if (always) {
if (node.shorthand) {
// Use shorthand
return;
}
reportForAlways(node);
}
else {
if (!node.shorthand) {
// Use longform
return;
}
reportForNever(node);
}
},
SvelteStyleDirective(node) {
if (always) {
if (node.shorthand) {
// Use shorthand
return;
}
if (node.value.length !== 1) {
// Cannot use shorthand
return;
}
const expression = node.value[0];
if (expression.type !== 'SvelteMustacheTag' ||
expression.expression.type !== 'Identifier' ||
expression.expression.name !== node.key.name.name) {
// Cannot use shorthand
return;
}
reportForAlways(node);
}
else {
if (!node.shorthand) {
// Use longform
return;
}
reportForNever(node);
}
}
};
}
});