Skip to content

Commit a2d00d9

Browse files
committed
oof
1 parent 05865b4 commit a2d00d9

3 files changed

Lines changed: 6 additions & 738 deletions

File tree

lib/rules/template-no-arguments-for-html-elements.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @type {import('eslint').Rule.RuleModule} */
2-
const htmlElements = require('html-elements');
2+
const htmlTags = require('html-tags');
33

44
module.exports = {
55
meta: {
@@ -21,7 +21,7 @@ module.exports = {
2121

2222
create(context) {
2323
const sourceCode = context.sourceCode;
24-
const HTML_ELEMENTS = new Set(htmlElements());
24+
const HTML_ELEMENTS = new Set(htmlTags);
2525

2626
return {
2727
GlimmerElementNode(node) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"ember-rfc176-data": "^0.3.18",
6666
"eslint-utils": "^3.0.0",
6767
"estraverse": "^5.3.0",
68-
"html-elements": "0.1.0",
68+
"html-tags": "3",
6969
"lodash.camelcase": "^4.3.0",
7070
"lodash.kebabcase": "^4.1.1",
7171
"requireindex": "^1.2.0",

0 commit comments

Comments
 (0)