Skip to content

Commit 68423d7

Browse files
feat(attr-sort): sort unknown attributes alphabetically
Previously unknown attributes were just ignored. Now they get sorted alphabetically. BREAKING CHANGE: HTMLHint will now throw an error if unkown attributes are not sorted. fix #661
1 parent fbd10ac commit 68423d7

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

src/core/rules/attr-sorted.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default {
3434
const originalAttrs = JSON.stringify(listOfAttributes)
3535
listOfAttributes.sort((a, b) => {
3636
if (orderMap[a] == undefined && orderMap[b] == undefined) {
37-
return 0
37+
return a.localeCompare(b)
3838
}
3939
if (orderMap[a] == undefined) {
4040
return 1

test/rules/attr-sort.spec.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,24 @@ describe(`Rules: ${ruleId}`, () => {
1818
expect(messages[0].message).to.contain('["id","class","title"]')
1919
})
2020

21-
it('Attribute unsorted tags that are unrecognizable should not throw error', () => {
22-
const code = '<div img="image" meta="meta" font="font"></div>'
21+
it('Attribute sorted tags that are unrecognizable should not throw error', () => {
22+
const code = '<div font="font" img="image" meta="meta"></div>'
2323

2424
const messages = HTMLHint.verify(code, ruleOptions)
2525

2626
expect(messages.length).to.be(0)
2727
})
2828

29+
it('Attribute unsorted tags that are unrecognizable should throw error', () => {
30+
const code = '<div img="image" meta="meta" font="font"></div>'
31+
32+
const messages = HTMLHint.verify(code, ruleOptions)
33+
34+
expect(messages.length).to.be(1)
35+
expect(messages[0].rule.id).to.be(ruleId)
36+
expect(messages[0].message).to.contain('["img","meta","font"]')
37+
})
38+
2939
it('Attribute unsorted of tags of various types should throw error', () => {
3040
const code = '<div type="type" img="image" id="id" font="font"></div>'
3141

0 commit comments

Comments
 (0)