eslint-plugin-ember
Version:
ESLint plugin for Ember.js apps
119 lines (108 loc) • 3.22 kB
JavaScript
/** @type {import('eslint').Rule.RuleModule} */
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'enforce consistent ordering of attributes in template elements',
category: 'Stylistic Issues',
url: 'https://github.com/ember-cli/eslint-plugin-ember/tree/master/docs/rules/template-attribute-order.md',
},
fixable: 'code',
schema: [
{
type: 'object',
properties: {
order: {
type: 'array',
items: {
type: 'string',
},
},
},
additionalProperties: false,
},
],
messages: {
wrongOrder: 'Attribute "{{currentAttr}}" should come {{position}} "{{expectedAttr}}".',
},
originallyFrom: {
name: 'ember-template-lint',
rule: 'lib/rules/attribute-order.js',
docs: 'docs/rule/attribute-order.md',
tests: 'test/unit/rules/attribute-order-test.js',
},
},
create(context) {
const sourceCode = context.sourceCode;
const options = context.options[0] || {};
const order = options.order || [
'class',
'id',
'role',
'aria-',
'data-test-',
'type',
'name',
'value',
'placeholder',
'disabled',
];
function getAttributeCategory(attrName) {
for (const category of order) {
if (category.endsWith('-')) {
if (attrName.startsWith(category)) {
return category;
}
} else if (attrName === category) {
return category;
}
}
return null;
}
function getExpectedIndex(attrName) {
const category = getAttributeCategory(attrName);
if (category === null) {
return order.length; // Unknown attributes go last
}
return order.indexOf(category);
}
return {
GlimmerElementNode(node) {
if (!node.attributes || node.attributes.length < 2) {
return;
}
const attributes = node.attributes.filter(
(attr) => attr.type === 'GlimmerAttrNode' && attr.name
);
for (let i = 1; i < attributes.length; i++) {
const current = attributes[i];
const currentIndex = getExpectedIndex(current.name);
for (let j = 0; j < i; j++) {
const previous = attributes[j];
const previousIndex = getExpectedIndex(previous.name);
if (currentIndex < previousIndex) {
context.report({
node: current,
messageId: 'wrongOrder',
data: {
currentAttr: current.name,
position: 'before',
expectedAttr: previous.name,
},
fix(fixer) {
const currentText = sourceCode.getText(current);
const previousText = sourceCode.getText(previous);
return [
fixer.replaceTextRange(previous.range, currentText),
fixer.replaceTextRange(current.range, previousText),
];
},
});
break;
}
}
}
},
};
},
};