We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29a42bf commit 0e2a3e5Copy full SHA for 0e2a3e5
lib/rules/restricted-component-names.js
@@ -17,21 +17,10 @@ const RESERVED_NAMES_IN_VUE = new Set(
17
const RESERVED_NAMES_IN_VUE3 = new Set(
18
require('../utils/vue3-builtin-components')
19
)
20
-const kebabCaseElements = [
21
- 'annotation-xml',
22
- 'color-profile',
23
- 'font-face',
24
- 'font-face-src',
25
- 'font-face-uri',
26
- 'font-face-format',
27
- 'font-face-name',
28
- 'missing-glyph'
29
-]
30
31
const RESERVED_NAMES_IN_HTML = new Set(htmlElements)
32
const RESERVED_NAMES_IN_OTHERS = new Set([
33
...deprecatedHtmlElements,
34
- ...kebabCaseElements,
35
...svgElements
36
])
37
0 commit comments