Skip to content

Commit 4d702d8

Browse files
authoredNov 12, 2021
fix: tagname-specialchars description (#714)
1 parent e027f30 commit 4d702d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/rules/tagname-specialchars.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Rule } from '../types'
22

33
export default {
44
id: 'tagname-specialchars',
5-
description: 'All html element names must be in lowercase.',
5+
description: 'All special characters must be escaped.',
66
init(parser, reporter) {
77
const specialchars = /[^a-zA-Z0-9\-:_]/
88

0 commit comments

Comments
 (0)
Please sign in to comment.