eslint-plugin-react-dom 2.0.0-next.8 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +20 -17
  2. package/dist/index.d.ts +16 -61
  3. package/dist/index.js +1983 -1947
  4. package/package.json +17 -26
package/dist/index.js CHANGED
@@ -1,2048 +1,2084 @@
1
- import { getDocsUrl, getSettingsFromContext, DEFAULT_ESLINT_REACT_SETTINGS } from '@eslint-react/shared';
2
- import * as ER from '@eslint-react/core';
3
- import { ESLintUtils } from '@typescript-eslint/utils';
4
- import * as AST from '@eslint-react/ast';
5
- import { AST_NODE_TYPES } from '@typescript-eslint/types';
6
- import { compare } from 'compare-versions';
7
- import { RegExp, Reporter } from '@eslint-react/kit';
8
- import { _ } from '@eslint-react/eff';
1
+ import { DEFAULT_ESLINT_REACT_SETTINGS, getConfigAdapters, getDocsUrl, getSettingsFromContext } from "@eslint-react/shared";
2
+ import * as ER from "@eslint-react/core";
3
+ import { ESLintUtils } from "@typescript-eslint/utils";
4
+ import { AST_NODE_TYPES } from "@typescript-eslint/types";
5
+ import { compare } from "compare-versions";
6
+ import { RE_JAVASCRIPT_PROTOCOL } from "@eslint-react/kit";
9
7
 
8
+ //#region rolldown:runtime
10
9
  var __defProp = Object.defineProperty;
11
- var __export = (target, all) => {
12
- for (var name3 in all)
13
- __defProp(target, name3, { get: all[name3], enumerable: true });
10
+ var __export = (all) => {
11
+ let target = {};
12
+ for (var name$2 in all) __defProp(target, name$2, {
13
+ get: all[name$2],
14
+ enumerable: true
15
+ });
16
+ return target;
14
17
  };
15
18
 
16
- // src/configs/recommended.ts
17
- var recommended_exports = {};
18
- __export(recommended_exports, {
19
- name: () => name,
20
- rules: () => rules,
21
- settings: () => settings
19
+ //#endregion
20
+ //#region src/configs/recommended.ts
21
+ var recommended_exports = /* @__PURE__ */ __export({
22
+ name: () => name$1,
23
+ rules: () => rules,
24
+ settings: () => settings
22
25
  });
23
- var name = "react-dom/recommended";
24
- var rules = {
25
- "react-dom/no-dangerously-set-innerhtml": "warn",
26
- "react-dom/no-dangerously-set-innerhtml-with-children": "error",
27
- "react-dom/no-find-dom-node": "error",
28
- "react-dom/no-flush-sync": "error",
29
- "react-dom/no-hydrate": "error",
30
- "react-dom/no-missing-button-type": "warn",
31
- "react-dom/no-missing-iframe-sandbox": "warn",
32
- "react-dom/no-namespace": "error",
33
- "react-dom/no-render": "error",
34
- "react-dom/no-render-return-value": "error",
35
- "react-dom/no-script-url": "warn",
36
- "react-dom/no-unsafe-iframe-sandbox": "warn",
37
- "react-dom/no-unsafe-target-blank": "warn",
38
- "react-dom/no-use-form-state": "error",
39
- "react-dom/no-void-elements-with-children": "error"
40
- };
41
- var settings = {
42
- "react-x": DEFAULT_ESLINT_REACT_SETTINGS
26
+ const name$1 = "react-dom/recommended";
27
+ const rules = {
28
+ "react-dom/no-dangerously-set-innerhtml": "warn",
29
+ "react-dom/no-dangerously-set-innerhtml-with-children": "error",
30
+ "react-dom/no-find-dom-node": "error",
31
+ "react-dom/no-flush-sync": "error",
32
+ "react-dom/no-hydrate": "error",
33
+ "react-dom/no-missing-button-type": "warn",
34
+ "react-dom/no-missing-iframe-sandbox": "warn",
35
+ "react-dom/no-namespace": "error",
36
+ "react-dom/no-render": "error",
37
+ "react-dom/no-render-return-value": "error",
38
+ "react-dom/no-script-url": "warn",
39
+ "react-dom/no-string-style-prop": "error",
40
+ "react-dom/no-unsafe-iframe-sandbox": "warn",
41
+ "react-dom/no-unsafe-target-blank": "warn",
42
+ "react-dom/no-use-form-state": "error",
43
+ "react-dom/no-void-elements-with-children": "error"
43
44
  };
45
+ const settings = { "react-x": DEFAULT_ESLINT_REACT_SETTINGS };
46
+
47
+ //#endregion
48
+ //#region package.json
49
+ var name = "eslint-plugin-react-dom";
50
+ var version = "2.0.0";
44
51
 
45
- // package.json
46
- var name2 = "eslint-plugin-react-dom";
47
- var version = "2.0.0-next.8";
52
+ //#endregion
53
+ //#region src/utils/create-jsx-element-resolver.ts
54
+ /**
55
+ * Creates a resolver for JSX elements that determines both the JSX element type
56
+ * and the underlying DOM element type.
57
+ *
58
+ * This resolver handles:
59
+ * 1. Regular HTML elements (div, span, etc.)
60
+ * 2. Polymorphic components (components that can render as different elements via a prop)
61
+ *
62
+ * @param context - The ESLint rule context
63
+ * @returns An object with a resolve method to determine element types
64
+ */
48
65
  function createJsxElementResolver(context) {
49
- const { components, polymorphicPropName } = getSettingsFromContext(context);
50
- return {
51
- resolve(node) {
52
- const name3 = ER.getElementType(context, node);
53
- const component = components.findLast((c) => c.name === name3 || c.re.test(name3));
54
- const result = {
55
- attributes: component?.attributes ?? [],
56
- domElementType: component?.as ?? name3,
57
- jsxElementType: name3
58
- };
59
- if (name3 === name3.toLowerCase() || component != null || polymorphicPropName == null) {
60
- return result;
61
- }
62
- const initialScope = context.sourceCode.getScope(node);
63
- const polymorphicPropAttr = ER.getAttribute(
64
- context,
65
- polymorphicPropName,
66
- node.openingElement.attributes,
67
- initialScope
68
- );
69
- if (polymorphicPropAttr != null) {
70
- const polymorphicPropValue = ER.getAttributeValue(
71
- context,
72
- polymorphicPropAttr,
73
- polymorphicPropName
74
- );
75
- if (polymorphicPropValue.kind === "some" && typeof polymorphicPropValue.value === "string") {
76
- return {
77
- ...result,
78
- domElementType: polymorphicPropValue.value
79
- };
80
- }
81
- }
82
- return result;
83
- }
84
- };
66
+ const { polymorphicPropName } = getSettingsFromContext(context);
67
+ return { resolve(node) {
68
+ const elementName = ER.getElementType(context, node);
69
+ const result = {
70
+ domElementType: elementName,
71
+ jsxElementType: elementName
72
+ };
73
+ if (elementName === elementName.toLowerCase() || polymorphicPropName == null) return result;
74
+ const polymorphicProp = ER.getAttribute(context, node.openingElement.attributes, context.sourceCode.getScope(node))(polymorphicPropName);
75
+ if (polymorphicProp != null) {
76
+ const staticValue = ER.resolveAttributeValue(context, polymorphicProp).toStatic(polymorphicPropName);
77
+ if (typeof staticValue === "string") return {
78
+ ...result,
79
+ domElementType: staticValue
80
+ };
81
+ }
82
+ return result;
83
+ } };
85
84
  }
86
- var createRule = ESLintUtils.RuleCreator(getDocsUrl("dom"));
87
85
 
88
- // src/utils/find-custom-component.ts
89
- function findCustomComponentProp(name3, props) {
90
- return props.findLast((a) => a.as === name3);
91
- }
86
+ //#endregion
87
+ //#region src/utils/create-rule.ts
88
+ const createRule = ESLintUtils.RuleCreator(getDocsUrl("dom"));
92
89
 
93
- // src/rules/no-dangerously-set-innerhtml.ts
94
- var RULE_NAME = "no-dangerously-set-innerhtml";
95
- var RULE_FEATURES = [];
90
+ //#endregion
91
+ //#region src/rules/no-dangerously-set-innerhtml.ts
92
+ const RULE_NAME$16 = "no-dangerously-set-innerhtml";
93
+ const RULE_FEATURES$15 = [];
96
94
  var no_dangerously_set_innerhtml_default = createRule({
97
- meta: {
98
- type: "problem",
99
- docs: {
100
- description: "Disallow `dangerouslySetInnerHTML`.",
101
- [Symbol.for("rule_features")]: RULE_FEATURES
102
- },
103
- messages: {
104
- noDangerouslySetInnerhtml: "Using 'dangerouslySetInnerHTML' may have security implications."
105
- },
106
- schema: []
107
- },
108
- name: RULE_NAME,
109
- create,
110
- defaultOptions: []
95
+ meta: {
96
+ type: "problem",
97
+ docs: {
98
+ description: "Disallow `dangerouslySetInnerHTML`.",
99
+ [Symbol.for("rule_features")]: RULE_FEATURES$15
100
+ },
101
+ messages: { noDangerouslySetInnerhtml: "Using 'dangerouslySetInnerHTML' may have security implications." },
102
+ schema: []
103
+ },
104
+ name: RULE_NAME$16,
105
+ create: create$16,
106
+ defaultOptions: []
111
107
  });
112
- var dangerouslySetInnerHTML = "dangerouslySetInnerHTML";
113
- function create(context) {
114
- if (!context.sourceCode.text.includes(dangerouslySetInnerHTML)) return {};
115
- return {
116
- JSXElement(node) {
117
- const attribute = ER.getAttribute(
118
- context,
119
- dangerouslySetInnerHTML,
120
- node.openingElement.attributes,
121
- context.sourceCode.getScope(node)
122
- );
123
- if (attribute == null) return;
124
- context.report({
125
- messageId: "noDangerouslySetInnerhtml",
126
- node: attribute
127
- });
128
- }
129
- };
108
+ const dangerouslySetInnerHTML$1 = "dangerouslySetInnerHTML";
109
+ function create$16(context) {
110
+ if (!context.sourceCode.text.includes(dangerouslySetInnerHTML$1)) return {};
111
+ return { JSXElement(node) {
112
+ const attribute = ER.getAttribute(context, node.openingElement.attributes, context.sourceCode.getScope(node))(dangerouslySetInnerHTML$1);
113
+ if (attribute == null) return;
114
+ context.report({
115
+ messageId: "noDangerouslySetInnerhtml",
116
+ node: attribute
117
+ });
118
+ } };
130
119
  }
131
- var RULE_NAME2 = "no-dangerously-set-innerhtml-with-children";
132
- var RULE_FEATURES2 = [];
120
+
121
+ //#endregion
122
+ //#region src/rules/no-dangerously-set-innerhtml-with-children.ts
123
+ const RULE_NAME$15 = "no-dangerously-set-innerhtml-with-children";
124
+ const RULE_FEATURES$14 = [];
133
125
  var no_dangerously_set_innerhtml_with_children_default = createRule({
134
- meta: {
135
- type: "problem",
136
- docs: {
137
- description: "Disallow `dangerouslySetInnerHTML` and `children` at the same time.",
138
- [Symbol.for("rule_features")]: RULE_FEATURES2
139
- },
140
- messages: {
141
- noDangerouslySetInnerhtmlWithChildren: "A DOM component cannot use both 'children' and 'dangerouslySetInnerHTML'."
142
- },
143
- schema: []
144
- },
145
- name: RULE_NAME2,
146
- create: create2,
147
- defaultOptions: []
126
+ meta: {
127
+ type: "problem",
128
+ docs: {
129
+ description: "Disallow `dangerouslySetInnerHTML` and `children` at the same time.",
130
+ [Symbol.for("rule_features")]: RULE_FEATURES$14
131
+ },
132
+ messages: { noDangerouslySetInnerhtmlWithChildren: "A DOM component cannot use both 'children' and 'dangerouslySetInnerHTML'." },
133
+ schema: []
134
+ },
135
+ name: RULE_NAME$15,
136
+ create: create$15,
137
+ defaultOptions: []
148
138
  });
149
- var dangerouslySetInnerHTML2 = "dangerouslySetInnerHTML";
150
- function create2(context) {
151
- if (!context.sourceCode.text.includes(dangerouslySetInnerHTML2)) return {};
152
- return {
153
- JSXElement(node) {
154
- const attributes = node.openingElement.attributes;
155
- const initialScope = context.sourceCode.getScope(node);
156
- const hasChildren = hasChildrenWithin(node) || ER.hasAttribute(context, "children", attributes, initialScope);
157
- if (hasChildren && ER.hasAttribute(context, dangerouslySetInnerHTML2, attributes, initialScope)) {
158
- context.report({
159
- messageId: "noDangerouslySetInnerhtmlWithChildren",
160
- node
161
- });
162
- }
163
- }
164
- };
139
+ const dangerouslySetInnerHTML = "dangerouslySetInnerHTML";
140
+ function create$15(context) {
141
+ if (!context.sourceCode.text.includes(dangerouslySetInnerHTML)) return {};
142
+ return { JSXElement(node) {
143
+ const attributes = node.openingElement.attributes;
144
+ const initialScope = context.sourceCode.getScope(node);
145
+ if ((node.children.some(isSignificantChildren) || ER.hasAttribute(context, "children", attributes, initialScope)) && ER.hasAttribute(context, dangerouslySetInnerHTML, attributes, initialScope)) context.report({
146
+ messageId: "noDangerouslySetInnerhtmlWithChildren",
147
+ node
148
+ });
149
+ } };
150
+ }
151
+ /**
152
+ * Check if a Literal or JSXText node is whitespace
153
+ * @param node The AST node to check
154
+ * @returns boolean `true` if the node is whitespace
155
+ */
156
+ function isWhiteSpace(node) {
157
+ return typeof node.value === "string" && node.raw.trim() === "";
165
158
  }
166
- function hasChildrenWithin(node) {
167
- return node.children.length > 0 && node.children[0] != null && !AST.isLineBreak(node.children[0]);
159
+ /**
160
+ * Check if a Literal or JSXText node is padding spaces
161
+ * @param node The AST node to check
162
+ * @returns boolean
163
+ */
164
+ function isPaddingSpaces(node) {
165
+ return ER.isJsxText(node) && isWhiteSpace(node) && node.raw.includes("\n");
168
166
  }
169
- var RULE_NAME3 = "no-find-dom-node";
170
- var RULE_FEATURES3 = [];
167
+ function isSignificantChildren(node) {
168
+ return node.type !== AST_NODE_TYPES.JSXText || !isPaddingSpaces(node);
169
+ }
170
+
171
+ //#endregion
172
+ //#region src/rules/no-find-dom-node.ts
173
+ const RULE_NAME$14 = "no-find-dom-node";
174
+ const RULE_FEATURES$13 = [];
171
175
  var no_find_dom_node_default = createRule({
172
- meta: {
173
- type: "problem",
174
- docs: {
175
- description: "Disallow `findDOMNode`.",
176
- [Symbol.for("rule_features")]: RULE_FEATURES3
177
- },
178
- messages: {
179
- noFindDomNode: "[Deprecated] Use alternatives instead."
180
- },
181
- schema: []
182
- },
183
- name: RULE_NAME3,
184
- create: create3,
185
- defaultOptions: []
176
+ meta: {
177
+ type: "problem",
178
+ docs: {
179
+ description: "Disallow `findDOMNode`.",
180
+ [Symbol.for("rule_features")]: RULE_FEATURES$13
181
+ },
182
+ messages: { noFindDomNode: "[Deprecated] Use alternatives instead." },
183
+ schema: []
184
+ },
185
+ name: RULE_NAME$14,
186
+ create: create$14,
187
+ defaultOptions: []
186
188
  });
187
- var findDOMNode = "findDOMNode";
188
- function create3(context) {
189
- if (!context.sourceCode.text.includes(findDOMNode)) return {};
190
- return {
191
- CallExpression(node) {
192
- const { callee } = node;
193
- switch (callee.type) {
194
- case AST_NODE_TYPES.Identifier:
195
- if (callee.name === findDOMNode) {
196
- context.report({ messageId: "noFindDomNode", node });
197
- }
198
- return;
199
- case AST_NODE_TYPES.MemberExpression:
200
- if (callee.property.type === AST_NODE_TYPES.Identifier && callee.property.name === findDOMNode) {
201
- context.report({ messageId: "noFindDomNode", node });
202
- }
203
- return;
204
- }
205
- }
206
- };
189
+ const findDOMNode = "findDOMNode";
190
+ function create$14(context) {
191
+ if (!context.sourceCode.text.includes(findDOMNode)) return {};
192
+ return { CallExpression(node) {
193
+ const { callee } = node;
194
+ switch (callee.type) {
195
+ case AST_NODE_TYPES.Identifier:
196
+ if (callee.name === findDOMNode) context.report({
197
+ messageId: "noFindDomNode",
198
+ node
199
+ });
200
+ return;
201
+ case AST_NODE_TYPES.MemberExpression:
202
+ if (callee.property.type === AST_NODE_TYPES.Identifier && callee.property.name === findDOMNode) context.report({
203
+ messageId: "noFindDomNode",
204
+ node
205
+ });
206
+ return;
207
+ }
208
+ } };
207
209
  }
208
- var RULE_NAME4 = "no-flush-sync";
209
- var RULE_FEATURES4 = [];
210
+
211
+ //#endregion
212
+ //#region src/rules/no-flush-sync.ts
213
+ const RULE_NAME$13 = "no-flush-sync";
214
+ const RULE_FEATURES$12 = [];
210
215
  var no_flush_sync_default = createRule({
211
- meta: {
212
- type: "problem",
213
- docs: {
214
- description: "Disallow `flushSync`.",
215
- [Symbol.for("rule_features")]: RULE_FEATURES4
216
- },
217
- messages: {
218
- noFlushSync: "Using 'flushSync' is uncommon and can hurt the performance of your app."
219
- },
220
- schema: []
221
- },
222
- name: RULE_NAME4,
223
- create: create4,
224
- defaultOptions: []
216
+ meta: {
217
+ type: "problem",
218
+ docs: {
219
+ description: "Disallow `flushSync`.",
220
+ [Symbol.for("rule_features")]: RULE_FEATURES$12
221
+ },
222
+ messages: { noFlushSync: "Using 'flushSync' is uncommon and can hurt the performance of your app." },
223
+ schema: []
224
+ },
225
+ name: RULE_NAME$13,
226
+ create: create$13,
227
+ defaultOptions: []
225
228
  });
226
- var flushSync = "flushSync";
227
- function create4(context) {
228
- if (!context.sourceCode.text.includes(flushSync)) return {};
229
- return {
230
- CallExpression(node) {
231
- const { callee } = node;
232
- switch (callee.type) {
233
- case AST_NODE_TYPES.Identifier:
234
- if (callee.name === flushSync) {
235
- context.report({ messageId: "noFlushSync", node });
236
- }
237
- return;
238
- case AST_NODE_TYPES.MemberExpression:
239
- if (callee.property.type === AST_NODE_TYPES.Identifier && callee.property.name === flushSync) {
240
- context.report({ messageId: "noFlushSync", node });
241
- }
242
- return;
243
- }
244
- }
245
- };
229
+ const flushSync = "flushSync";
230
+ function create$13(context) {
231
+ if (!context.sourceCode.text.includes(flushSync)) return {};
232
+ return { CallExpression(node) {
233
+ const { callee } = node;
234
+ switch (callee.type) {
235
+ case AST_NODE_TYPES.Identifier:
236
+ if (callee.name === flushSync) context.report({
237
+ messageId: "noFlushSync",
238
+ node
239
+ });
240
+ return;
241
+ case AST_NODE_TYPES.MemberExpression:
242
+ if (callee.property.type === AST_NODE_TYPES.Identifier && callee.property.name === flushSync) context.report({
243
+ messageId: "noFlushSync",
244
+ node
245
+ });
246
+ return;
247
+ }
248
+ } };
246
249
  }
247
- var RULE_NAME5 = "no-hydrate";
248
- var RULE_FEATURES5 = [
249
- "MOD"
250
- ];
250
+
251
+ //#endregion
252
+ //#region src/rules/no-hydrate.ts
253
+ const RULE_NAME$12 = "no-hydrate";
254
+ const RULE_FEATURES$11 = ["MOD"];
251
255
  var no_hydrate_default = createRule({
252
- meta: {
253
- type: "problem",
254
- docs: {
255
- description: "Replaces usages of `ReactDom.hydrate()` with `hydrateRoot()`.",
256
- [Symbol.for("rule_features")]: RULE_FEATURES5
257
- },
258
- fixable: "code",
259
- messages: {
260
- noHydrate: "[Deprecated] Use 'hydrateRoot()' instead."
261
- },
262
- schema: []
263
- },
264
- name: RULE_NAME5,
265
- create: create5,
266
- defaultOptions: []
256
+ meta: {
257
+ type: "problem",
258
+ docs: {
259
+ description: "Replaces usages of `ReactDom.hydrate()` with `hydrateRoot()`.",
260
+ [Symbol.for("rule_features")]: RULE_FEATURES$11
261
+ },
262
+ fixable: "code",
263
+ messages: { noHydrate: "[Deprecated] Use 'hydrateRoot()' instead." },
264
+ schema: []
265
+ },
266
+ name: RULE_NAME$12,
267
+ create: create$12,
268
+ defaultOptions: []
267
269
  });
268
- var hydrate = "hydrate";
269
- function create5(context) {
270
- if (!context.sourceCode.text.includes(hydrate)) return {};
271
- const settings2 = getSettingsFromContext(context);
272
- if (compare(settings2.version, "18.0.0", "<")) return {};
273
- const reactDomNames = /* @__PURE__ */ new Set();
274
- const hydrateNames = /* @__PURE__ */ new Set();
275
- return {
276
- CallExpression(node) {
277
- switch (true) {
278
- case (node.callee.type === AST_NODE_TYPES.Identifier && hydrateNames.has(node.callee.name)):
279
- context.report({
280
- messageId: "noHydrate",
281
- node,
282
- fix: getFix(context, node)
283
- });
284
- return;
285
- case (node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === hydrate && reactDomNames.has(node.callee.object.name)):
286
- context.report({
287
- messageId: "noHydrate",
288
- node,
289
- fix: getFix(context, node)
290
- });
291
- return;
292
- }
293
- },
294
- ImportDeclaration(node) {
295
- const [baseSource] = node.source.value.split("/");
296
- if (baseSource !== "react-dom") return;
297
- for (const specifier of node.specifiers) {
298
- switch (specifier.type) {
299
- case AST_NODE_TYPES.ImportSpecifier:
300
- if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
301
- if (specifier.imported.name === hydrate) {
302
- hydrateNames.add(specifier.local.name);
303
- }
304
- continue;
305
- case AST_NODE_TYPES.ImportDefaultSpecifier:
306
- case AST_NODE_TYPES.ImportNamespaceSpecifier:
307
- reactDomNames.add(specifier.local.name);
308
- continue;
309
- }
310
- }
311
- }
312
- };
270
+ const hydrate = "hydrate";
271
+ function create$12(context) {
272
+ if (!context.sourceCode.text.includes(hydrate)) return {};
273
+ const settings$1 = getSettingsFromContext(context);
274
+ if (compare(settings$1.version, "18.0.0", "<")) return {};
275
+ const reactDomNames = /* @__PURE__ */ new Set();
276
+ const hydrateNames = /* @__PURE__ */ new Set();
277
+ return {
278
+ CallExpression(node) {
279
+ switch (true) {
280
+ case node.callee.type === AST_NODE_TYPES.Identifier && hydrateNames.has(node.callee.name):
281
+ context.report({
282
+ messageId: "noHydrate",
283
+ node,
284
+ fix: getFix$2(context, node)
285
+ });
286
+ return;
287
+ case node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === hydrate && reactDomNames.has(node.callee.object.name):
288
+ context.report({
289
+ messageId: "noHydrate",
290
+ node,
291
+ fix: getFix$2(context, node)
292
+ });
293
+ return;
294
+ }
295
+ },
296
+ ImportDeclaration(node) {
297
+ const [baseSource] = node.source.value.split("/");
298
+ if (baseSource !== "react-dom") return;
299
+ for (const specifier of node.specifiers) switch (specifier.type) {
300
+ case AST_NODE_TYPES.ImportSpecifier:
301
+ if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
302
+ if (specifier.imported.name === hydrate) hydrateNames.add(specifier.local.name);
303
+ continue;
304
+ case AST_NODE_TYPES.ImportDefaultSpecifier:
305
+ case AST_NODE_TYPES.ImportNamespaceSpecifier:
306
+ reactDomNames.add(specifier.local.name);
307
+ continue;
308
+ }
309
+ }
310
+ };
313
311
  }
314
- function getFix(context, node) {
315
- const getText2 = (n) => context.sourceCode.getText(n);
316
- return (fixer) => {
317
- const [arg0, arg1] = node.arguments;
318
- if (arg0 == null || arg1 == null) return null;
319
- return [
320
- fixer.insertTextBefore(context.sourceCode.ast, 'import { hydrateRoot } from "react-dom/client";\n'),
321
- fixer.replaceText(node, `hydrateRoot(${getText2(arg1)}, ${getText2(arg0)})`)
322
- ];
323
- };
312
+ function getFix$2(context, node) {
313
+ const getText$1 = (n) => context.sourceCode.getText(n);
314
+ return (fixer) => {
315
+ const [arg0, arg1] = node.arguments;
316
+ if (arg0 == null || arg1 == null) return null;
317
+ return [fixer.insertTextBefore(context.sourceCode.ast, "import { hydrateRoot } from \"react-dom/client\";\n"), fixer.replaceText(node, `hydrateRoot(${getText$1(arg1)}, ${getText$1(arg0)})`)];
318
+ };
324
319
  }
325
- var RULE_NAME6 = "no-missing-button-type";
326
- var RULE_FEATURES6 = [];
320
+
321
+ //#endregion
322
+ //#region src/rules/no-missing-button-type.ts
323
+ const RULE_NAME$11 = "no-missing-button-type";
324
+ const RULE_FEATURES$10 = ["FIX"];
325
+ const BUTTON_TYPES = [
326
+ "button",
327
+ "submit",
328
+ "reset"
329
+ ];
327
330
  var no_missing_button_type_default = createRule({
328
- meta: {
329
- type: "problem",
330
- docs: {
331
- description: "Enforces explicit `type` attribute for `button` elements.",
332
- [Symbol.for("rule_features")]: RULE_FEATURES6
333
- },
334
- messages: {
335
- noMissingButtonType: "Add missing 'type' attribute on 'button' component."
336
- },
337
- schema: []
338
- },
339
- name: RULE_NAME6,
340
- create: create6,
341
- defaultOptions: []
331
+ meta: {
332
+ type: "problem",
333
+ docs: {
334
+ description: "Enforces explicit `type` attribute for `button` elements.",
335
+ [Symbol.for("rule_features")]: RULE_FEATURES$10
336
+ },
337
+ hasSuggestions: true,
338
+ messages: {
339
+ addButtonType: "Add 'type' attribute with value '{{type}}'.",
340
+ noMissingButtonType: "Add missing 'type' attribute on 'button' component."
341
+ },
342
+ schema: []
343
+ },
344
+ name: RULE_NAME$11,
345
+ create: create$11,
346
+ defaultOptions: []
342
347
  });
343
- function create6(context) {
344
- const resolver = createJsxElementResolver(context);
345
- return {
346
- JSXElement(node) {
347
- const { attributes, domElementType } = resolver.resolve(node);
348
- if (domElementType !== "button") return;
349
- const customComponentProp = findCustomComponentProp("type", attributes);
350
- const propNameOnJsx = customComponentProp?.name ?? "type";
351
- const attributeNode = ER.getAttribute(
352
- context,
353
- propNameOnJsx,
354
- node.openingElement.attributes,
355
- context.sourceCode.getScope(node)
356
- );
357
- if (attributeNode != null) {
358
- const attributeValue = ER.getAttributeValue(
359
- context,
360
- attributeNode,
361
- propNameOnJsx
362
- );
363
- if (attributeValue.kind === "some" && typeof attributeValue.value !== "string") {
364
- context.report({
365
- messageId: "noMissingButtonType",
366
- node: attributeNode
367
- });
368
- }
369
- return;
370
- }
371
- if (typeof customComponentProp?.defaultValue !== "string") {
372
- context.report({
373
- messageId: "noMissingButtonType",
374
- node
375
- });
376
- }
377
- }
378
- };
348
+ function create$11(context) {
349
+ const resolver = createJsxElementResolver(context);
350
+ return { JSXElement(node) {
351
+ const { domElementType } = resolver.resolve(node);
352
+ if (domElementType !== "button") return;
353
+ const typeAttribute = ER.getAttribute(context, node.openingElement.attributes, context.sourceCode.getScope(node))("type");
354
+ if (typeAttribute == null) {
355
+ context.report({
356
+ messageId: "noMissingButtonType",
357
+ node: node.openingElement,
358
+ suggest: getSuggest((type) => (fixer) => {
359
+ return fixer.insertTextAfter(node.openingElement.name, ` type="${type}"`);
360
+ })
361
+ });
362
+ return;
363
+ }
364
+ if (typeof ER.resolveAttributeValue(context, typeAttribute).toStatic("type") === "string") return;
365
+ context.report({
366
+ messageId: "noMissingButtonType",
367
+ node: typeAttribute,
368
+ suggest: getSuggest((type) => (fixer) => {
369
+ return fixer.replaceText(typeAttribute, `type="${type}"`);
370
+ })
371
+ });
372
+ } };
379
373
  }
380
- var RULE_NAME7 = "no-missing-iframe-sandbox";
381
- var RULE_FEATURES7 = [];
382
- var validTypes = [
383
- "",
384
- "allow-downloads",
385
- "allow-downloads-without-user-activation",
386
- "allow-forms",
387
- "allow-modals",
388
- "allow-orientation-lock",
389
- "allow-pointer-lock",
390
- "allow-popups",
391
- "allow-popups-to-escape-sandbox",
392
- "allow-presentation",
393
- "allow-same-origin",
394
- "allow-scripts",
395
- "allow-storage-access-by-user-activation",
396
- "allow-top-navigation",
397
- "allow-top-navigation-by-user-activation",
398
- "allow-top-navigation-to-custom-protocols"
399
- ];
400
- function hasValidSandBox(value) {
401
- return typeof value === "string" && value.split(" ").every((value2) => validTypes.some((valid) => valid === value2));
374
+ function getSuggest(getFix$3) {
375
+ return BUTTON_TYPES.map((type) => ({
376
+ messageId: "addButtonType",
377
+ data: { type },
378
+ fix: getFix$3(type)
379
+ }));
402
380
  }
381
+
382
+ //#endregion
383
+ //#region src/rules/no-missing-iframe-sandbox.ts
384
+ const RULE_NAME$10 = "no-missing-iframe-sandbox";
385
+ const RULE_FEATURES$9 = ["FIX"];
403
386
  var no_missing_iframe_sandbox_default = createRule({
404
- meta: {
405
- type: "problem",
406
- docs: {
407
- description: "Enforces explicit `sandbox` attribute for `iframe` elements.",
408
- [Symbol.for("rule_features")]: RULE_FEATURES7
409
- },
410
- messages: {
411
- noMissingIframeSandbox: "Add missing 'sandbox' attribute on 'iframe' component."
412
- },
413
- schema: []
414
- },
415
- name: RULE_NAME7,
416
- create: create7,
417
- defaultOptions: []
387
+ meta: {
388
+ type: "problem",
389
+ docs: {
390
+ description: "Enforces explicit `sandbox` attribute for `iframe` elements.",
391
+ [Symbol.for("rule_features")]: RULE_FEATURES$9
392
+ },
393
+ fixable: "code",
394
+ hasSuggestions: true,
395
+ messages: {
396
+ addIframeSandbox: "Add 'sandbox' attribute with value '{{value}}'.",
397
+ noMissingIframeSandbox: "Add missing 'sandbox' attribute on 'iframe' component."
398
+ },
399
+ schema: []
400
+ },
401
+ name: RULE_NAME$10,
402
+ create: create$10,
403
+ defaultOptions: []
418
404
  });
419
- function create7(context) {
420
- const resolver = createJsxElementResolver(context);
421
- return {
422
- JSXElement(node) {
423
- const { attributes, domElementType } = resolver.resolve(node);
424
- if (domElementType !== "iframe") return;
425
- const customComponentProp = findCustomComponentProp("sandbox", attributes);
426
- const propNameOnJsx = customComponentProp?.name ?? "sandbox";
427
- const attributeNode = ER.getAttribute(
428
- context,
429
- propNameOnJsx,
430
- node.openingElement.attributes,
431
- context.sourceCode.getScope(node)
432
- );
433
- if (attributeNode != null) {
434
- const attributeValue = ER.getAttributeValue(
435
- context,
436
- attributeNode,
437
- propNameOnJsx
438
- );
439
- if (attributeValue.kind === "some" && hasValidSandBox(attributeValue.value)) return;
440
- context.report({
441
- messageId: "noMissingIframeSandbox",
442
- node: attributeNode
443
- });
444
- return;
445
- }
446
- if (!hasValidSandBox(customComponentProp?.defaultValue)) {
447
- context.report({
448
- messageId: "noMissingIframeSandbox",
449
- node
450
- });
451
- }
452
- }
453
- };
405
+ function create$10(context) {
406
+ const resolver = createJsxElementResolver(context);
407
+ return { JSXElement(node) {
408
+ const { domElementType } = resolver.resolve(node);
409
+ if (domElementType !== "iframe") return;
410
+ const sandboxAttribute = ER.getAttribute(context, node.openingElement.attributes, context.sourceCode.getScope(node))("sandbox");
411
+ if (sandboxAttribute == null) {
412
+ context.report({
413
+ messageId: "noMissingIframeSandbox",
414
+ node: node.openingElement,
415
+ suggest: [{
416
+ messageId: "addIframeSandbox",
417
+ data: { value: "" },
418
+ fix(fixer) {
419
+ return fixer.insertTextAfter(node.openingElement.name, ` sandbox=""`);
420
+ }
421
+ }]
422
+ });
423
+ return;
424
+ }
425
+ const sandboxAttributeValue = ER.resolveAttributeValue(context, sandboxAttribute);
426
+ if (typeof sandboxAttributeValue.toStatic("sandbox") === "string") return;
427
+ context.report({
428
+ messageId: "noMissingIframeSandbox",
429
+ node: sandboxAttributeValue.node ?? sandboxAttribute,
430
+ suggest: [{
431
+ messageId: "addIframeSandbox",
432
+ data: { value: "" },
433
+ fix(fixer) {
434
+ if (sandboxAttributeValue.kind.startsWith("spread")) return null;
435
+ return fixer.replaceText(sandboxAttribute, `sandbox=""`);
436
+ }
437
+ }]
438
+ });
439
+ } };
454
440
  }
455
- var RULE_NAME8 = "no-namespace";
456
- var RULE_FEATURES8 = [];
441
+
442
+ //#endregion
443
+ //#region src/rules/no-namespace.ts
444
+ const RULE_NAME$9 = "no-namespace";
445
+ const RULE_FEATURES$8 = [];
457
446
  var no_namespace_default = createRule({
458
- meta: {
459
- type: "problem",
460
- docs: {
461
- description: "Enforces the absence of a `namespace` in React elements.",
462
- [Symbol.for("rule_features")]: RULE_FEATURES8
463
- },
464
- messages: {
465
- noNamespace: "A React component '{{name}}' must not be in a namespace, as React does not support them."
466
- },
467
- schema: []
468
- },
469
- name: RULE_NAME8,
470
- create: create8,
471
- defaultOptions: []
447
+ meta: {
448
+ type: "problem",
449
+ docs: {
450
+ description: "Enforces the absence of a `namespace` in React elements.",
451
+ [Symbol.for("rule_features")]: RULE_FEATURES$8
452
+ },
453
+ messages: { noNamespace: "A React component '{{name}}' must not be in a namespace, as React does not support them." },
454
+ schema: []
455
+ },
456
+ name: RULE_NAME$9,
457
+ create: create$9,
458
+ defaultOptions: []
472
459
  });
473
- function create8(context) {
474
- return {
475
- JSXElement(node) {
476
- const name3 = ER.getElementType(context, node);
477
- if (typeof name3 !== "string" || !name3.includes(":")) {
478
- return;
479
- }
480
- context.report({
481
- messageId: "noNamespace",
482
- node: node.openingElement.name,
483
- data: {
484
- name: name3
485
- }
486
- });
487
- }
488
- };
460
+ function create$9(context) {
461
+ return { JSXElement(node) {
462
+ const name$2 = ER.getElementType(context, node);
463
+ if (typeof name$2 !== "string" || !name$2.includes(":")) return;
464
+ context.report({
465
+ messageId: "noNamespace",
466
+ node: node.openingElement.name,
467
+ data: { name: name$2 }
468
+ });
469
+ } };
489
470
  }
490
- var RULE_NAME9 = "no-render";
491
- var RULE_FEATURES9 = [
492
- "MOD"
493
- ];
471
+
472
+ //#endregion
473
+ //#region src/rules/no-render.ts
474
+ const RULE_NAME$8 = "no-render";
475
+ const RULE_FEATURES$7 = ["MOD"];
494
476
  var no_render_default = createRule({
495
- meta: {
496
- type: "problem",
497
- docs: {
498
- description: "Replaces usages of `ReactDom.render()` with `createRoot(node).render()`.",
499
- [Symbol.for("rule_features")]: RULE_FEATURES9
500
- },
501
- fixable: "code",
502
- messages: {
503
- noRender: "[Deprecated] Use 'createRoot(node).render()' instead."
504
- },
505
- schema: []
506
- },
507
- name: RULE_NAME9,
508
- create: create9,
509
- defaultOptions: []
477
+ meta: {
478
+ type: "problem",
479
+ docs: {
480
+ description: "Replaces usages of `ReactDom.render()` with `createRoot(node).render()`.",
481
+ [Symbol.for("rule_features")]: RULE_FEATURES$7
482
+ },
483
+ fixable: "code",
484
+ messages: { noRender: "[Deprecated] Use 'createRoot(node).render()' instead." },
485
+ schema: []
486
+ },
487
+ name: RULE_NAME$8,
488
+ create: create$8,
489
+ defaultOptions: []
510
490
  });
511
- function create9(context) {
512
- if (!context.sourceCode.text.includes("render")) return {};
513
- const settings2 = getSettingsFromContext(context);
514
- if (compare(settings2.version, "18.0.0", "<")) return {};
515
- const reactDomNames = /* @__PURE__ */ new Set(["ReactDOM", "ReactDom"]);
516
- const renderNames = /* @__PURE__ */ new Set();
517
- return {
518
- CallExpression(node) {
519
- switch (true) {
520
- case (node.callee.type === AST_NODE_TYPES.Identifier && renderNames.has(node.callee.name)):
521
- context.report({
522
- messageId: "noRender",
523
- node,
524
- fix: getFix2(context, node)
525
- });
526
- return;
527
- case (node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === "render" && reactDomNames.has(node.callee.object.name)):
528
- context.report({
529
- messageId: "noRender",
530
- node,
531
- fix: getFix2(context, node)
532
- });
533
- return;
534
- }
535
- },
536
- ImportDeclaration(node) {
537
- const [baseSource] = node.source.value.split("/");
538
- if (baseSource !== "react-dom") return;
539
- for (const specifier of node.specifiers) {
540
- switch (specifier.type) {
541
- case AST_NODE_TYPES.ImportSpecifier:
542
- if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
543
- if (specifier.imported.name === "render") {
544
- renderNames.add(specifier.local.name);
545
- }
546
- continue;
547
- case AST_NODE_TYPES.ImportDefaultSpecifier:
548
- case AST_NODE_TYPES.ImportNamespaceSpecifier:
549
- reactDomNames.add(specifier.local.name);
550
- continue;
551
- }
552
- }
553
- }
554
- };
491
+ function create$8(context) {
492
+ if (!context.sourceCode.text.includes("render")) return {};
493
+ const settings$1 = getSettingsFromContext(context);
494
+ if (compare(settings$1.version, "18.0.0", "<")) return {};
495
+ const reactDomNames = new Set(["ReactDOM", "ReactDom"]);
496
+ const renderNames = /* @__PURE__ */ new Set();
497
+ return {
498
+ CallExpression(node) {
499
+ switch (true) {
500
+ case node.callee.type === AST_NODE_TYPES.Identifier && renderNames.has(node.callee.name):
501
+ context.report({
502
+ messageId: "noRender",
503
+ node,
504
+ fix: getFix$1(context, node)
505
+ });
506
+ return;
507
+ case node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === "render" && reactDomNames.has(node.callee.object.name):
508
+ context.report({
509
+ messageId: "noRender",
510
+ node,
511
+ fix: getFix$1(context, node)
512
+ });
513
+ return;
514
+ }
515
+ },
516
+ ImportDeclaration(node) {
517
+ const [baseSource] = node.source.value.split("/");
518
+ if (baseSource !== "react-dom") return;
519
+ for (const specifier of node.specifiers) switch (specifier.type) {
520
+ case AST_NODE_TYPES.ImportSpecifier:
521
+ if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
522
+ if (specifier.imported.name === "render") renderNames.add(specifier.local.name);
523
+ continue;
524
+ case AST_NODE_TYPES.ImportDefaultSpecifier:
525
+ case AST_NODE_TYPES.ImportNamespaceSpecifier:
526
+ reactDomNames.add(specifier.local.name);
527
+ continue;
528
+ }
529
+ }
530
+ };
555
531
  }
556
- function getFix2(context, node) {
557
- const getText2 = (n) => context.sourceCode.getText(n);
558
- return (fixer) => {
559
- const [arg0, arg1] = node.arguments;
560
- if (arg0 == null || arg1 == null) return null;
561
- return [
562
- fixer.insertTextBefore(context.sourceCode.ast, 'import { createRoot } from "react-dom/client";\n'),
563
- fixer.replaceText(node, `createRoot(${getText2(arg1)}).render(${getText2(arg0)})`)
564
- ];
565
- };
532
+ function getFix$1(context, node) {
533
+ const getText$1 = (n) => context.sourceCode.getText(n);
534
+ return (fixer) => {
535
+ const [arg0, arg1] = node.arguments;
536
+ if (arg0 == null || arg1 == null) return null;
537
+ return [fixer.insertTextBefore(context.sourceCode.ast, "import { createRoot } from \"react-dom/client\";\n"), fixer.replaceText(node, `createRoot(${getText$1(arg1)}).render(${getText$1(arg0)})`)];
538
+ };
566
539
  }
567
- var RULE_NAME10 = "no-render-return-value";
568
- var RULE_FEATURES10 = [];
569
- var banParentTypes = [
570
- AST_NODE_TYPES.VariableDeclarator,
571
- AST_NODE_TYPES.Property,
572
- AST_NODE_TYPES.ReturnStatement,
573
- AST_NODE_TYPES.ArrowFunctionExpression,
574
- AST_NODE_TYPES.AssignmentExpression
540
+
541
+ //#endregion
542
+ //#region src/rules/no-render-return-value.ts
543
+ const RULE_NAME$7 = "no-render-return-value";
544
+ const RULE_FEATURES$6 = [];
545
+ const banParentTypes = [
546
+ AST_NODE_TYPES.VariableDeclarator,
547
+ AST_NODE_TYPES.Property,
548
+ AST_NODE_TYPES.ReturnStatement,
549
+ AST_NODE_TYPES.ArrowFunctionExpression,
550
+ AST_NODE_TYPES.AssignmentExpression
575
551
  ];
576
552
  var no_render_return_value_default = createRule({
577
- meta: {
578
- type: "problem",
579
- docs: {
580
- description: "Disallow the return value of `ReactDOM.render`.",
581
- [Symbol.for("rule_features")]: RULE_FEATURES10
582
- },
583
- messages: {
584
- noRenderReturnValue: "Do not depend on the return value from 'ReactDOM.render'."
585
- },
586
- schema: []
587
- },
588
- name: RULE_NAME10,
589
- create: create10,
590
- defaultOptions: []
553
+ meta: {
554
+ type: "problem",
555
+ docs: {
556
+ description: "Disallow the return value of `ReactDOM.render`.",
557
+ [Symbol.for("rule_features")]: RULE_FEATURES$6
558
+ },
559
+ messages: { noRenderReturnValue: "Do not depend on the return value from 'ReactDOM.render'." },
560
+ schema: []
561
+ },
562
+ name: RULE_NAME$7,
563
+ create: create$7,
564
+ defaultOptions: []
591
565
  });
592
- function create10(context) {
593
- const reactDomNames = /* @__PURE__ */ new Set(["ReactDOM", "ReactDom"]);
594
- const renderNames = /* @__PURE__ */ new Set();
595
- return {
596
- CallExpression(node) {
597
- switch (true) {
598
- case (node.callee.type === AST_NODE_TYPES.Identifier && renderNames.has(node.callee.name) && banParentTypes.includes(node.parent.type)):
599
- context.report({
600
- messageId: "noRenderReturnValue",
601
- node
602
- });
603
- return;
604
- case (node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === "render" && reactDomNames.has(node.callee.object.name) && banParentTypes.includes(node.parent.type)):
605
- context.report({
606
- messageId: "noRenderReturnValue",
607
- node
608
- });
609
- return;
610
- }
611
- },
612
- ImportDeclaration(node) {
613
- const [baseSource] = node.source.value.split("/");
614
- if (baseSource !== "react-dom") return;
615
- for (const specifier of node.specifiers) {
616
- switch (specifier.type) {
617
- case AST_NODE_TYPES.ImportSpecifier:
618
- if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
619
- if (specifier.imported.name === "render") {
620
- renderNames.add(specifier.local.name);
621
- }
622
- continue;
623
- case AST_NODE_TYPES.ImportDefaultSpecifier:
624
- case AST_NODE_TYPES.ImportNamespaceSpecifier:
625
- reactDomNames.add(specifier.local.name);
626
- continue;
627
- }
628
- }
629
- }
630
- };
566
+ function create$7(context) {
567
+ const reactDomNames = new Set(["ReactDOM", "ReactDom"]);
568
+ const renderNames = /* @__PURE__ */ new Set();
569
+ return {
570
+ CallExpression(node) {
571
+ switch (true) {
572
+ case node.callee.type === AST_NODE_TYPES.Identifier && renderNames.has(node.callee.name) && banParentTypes.includes(node.parent.type):
573
+ context.report({
574
+ messageId: "noRenderReturnValue",
575
+ node
576
+ });
577
+ return;
578
+ case node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === "render" && reactDomNames.has(node.callee.object.name) && banParentTypes.includes(node.parent.type):
579
+ context.report({
580
+ messageId: "noRenderReturnValue",
581
+ node
582
+ });
583
+ return;
584
+ }
585
+ },
586
+ ImportDeclaration(node) {
587
+ const [baseSource] = node.source.value.split("/");
588
+ if (baseSource !== "react-dom") return;
589
+ for (const specifier of node.specifiers) switch (specifier.type) {
590
+ case AST_NODE_TYPES.ImportSpecifier:
591
+ if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
592
+ if (specifier.imported.name === "render") renderNames.add(specifier.local.name);
593
+ continue;
594
+ case AST_NODE_TYPES.ImportDefaultSpecifier:
595
+ case AST_NODE_TYPES.ImportNamespaceSpecifier:
596
+ reactDomNames.add(specifier.local.name);
597
+ continue;
598
+ }
599
+ }
600
+ };
631
601
  }
632
- var RULE_NAME11 = "no-script-url";
633
- var RULE_FEATURES11 = [];
602
+
603
+ //#endregion
604
+ //#region src/rules/no-script-url.ts
605
+ const RULE_NAME$6 = "no-script-url";
606
+ const RULE_FEATURES$5 = [];
634
607
  var no_script_url_default = createRule({
635
- meta: {
636
- type: "problem",
637
- docs: {
638
- description: "Disallow `javascript:` URLs as attribute values.",
639
- [Symbol.for("rule_features")]: RULE_FEATURES11
640
- },
641
- messages: {
642
- noScriptUrl: "Using a `javascript:` URL is a security risk and should be avoided."
643
- },
644
- schema: []
645
- },
646
- name: RULE_NAME11,
647
- create: create11,
648
- defaultOptions: []
608
+ meta: {
609
+ type: "problem",
610
+ docs: {
611
+ description: "Disallow `javascript:` URLs as attribute values.",
612
+ [Symbol.for("rule_features")]: RULE_FEATURES$5
613
+ },
614
+ messages: { noScriptUrl: "Using a `javascript:` URL is a security risk and should be avoided." },
615
+ schema: []
616
+ },
617
+ name: RULE_NAME$6,
618
+ create: create$6,
619
+ defaultOptions: []
649
620
  });
650
- function create11(context) {
651
- return {
652
- JSXAttribute(node) {
653
- if (node.name.type !== AST_NODE_TYPES.JSXIdentifier || node.value == null) {
654
- return;
655
- }
656
- const attributeValue = ER.getAttributeValue(context, node, ER.getAttributeName(context, node));
657
- if (attributeValue.kind === "none" || typeof attributeValue.value !== "string") return;
658
- if (RegExp.JAVASCRIPT_PROTOCOL.test(attributeValue.value)) {
659
- context.report({
660
- messageId: "noScriptUrl",
661
- node: node.value
662
- });
663
- }
664
- }
665
- };
621
+ function create$6(context) {
622
+ return { JSXAttribute(node) {
623
+ if (node.name.type !== AST_NODE_TYPES.JSXIdentifier || node.value == null) return;
624
+ const value = ER.resolveAttributeValue(context, node).toStatic();
625
+ if (typeof value === "string" && RE_JAVASCRIPT_PROTOCOL.test(value)) context.report({
626
+ messageId: "noScriptUrl",
627
+ node: node.value
628
+ });
629
+ } };
666
630
  }
667
- var RULE_NAME12 = "no-unknown-property";
668
- var DEFAULTS = {
669
- ignore: [],
670
- requireDataLowercase: false
631
+
632
+ //#endregion
633
+ //#region src/rules/no-string-style-prop.ts
634
+ const RULE_NAME$5 = "no-string-style-prop";
635
+ const RULE_FEATURES$4 = [];
636
+ var no_string_style_prop_default = createRule({
637
+ meta: {
638
+ type: "problem",
639
+ docs: {
640
+ description: "Disallows the use of string style prop.",
641
+ [Symbol.for("rule_features")]: RULE_FEATURES$4
642
+ },
643
+ messages: { noStringStyleProp: "Do not use string style prop. Use an object instead." },
644
+ schema: []
645
+ },
646
+ name: RULE_NAME$5,
647
+ create: create$5,
648
+ defaultOptions: []
649
+ });
650
+ function create$5(context) {
651
+ return { JSXElement(node) {
652
+ if (!ER.isHostElement(context, node)) return;
653
+ const attribute = ER.getAttribute(context, node.openingElement.attributes, context.sourceCode.getScope(node))("style");
654
+ if (attribute == null) return;
655
+ const attributeValue = ER.resolveAttributeValue(context, attribute);
656
+ if (typeof attributeValue.toStatic() === "string") context.report({
657
+ messageId: "noStringStyleProp",
658
+ node: attributeValue.node ?? attribute
659
+ });
660
+ } };
661
+ }
662
+
663
+ //#endregion
664
+ //#region src/rules/no-unknown-property.ts
665
+ const RULE_NAME$4 = "no-unknown-property";
666
+ const DEFAULTS = {
667
+ ignore: [],
668
+ requireDataLowercase: false
671
669
  };
672
- var DOM_ATTRIBUTE_NAMES = {
673
- "accept-charset": "acceptCharset",
674
- class: "className",
675
- crossorigin: "crossOrigin",
676
- for: "htmlFor",
677
- "http-equiv": "httpEquiv",
678
- nomodule: "noModule"
670
+ /**
671
+ * Map of standard HTML attributes to their React counterparts
672
+ */
673
+ const DOM_ATTRIBUTE_NAMES = {
674
+ "accept-charset": "acceptCharset",
675
+ class: "className",
676
+ crossorigin: "crossOrigin",
677
+ for: "htmlFor",
678
+ "http-equiv": "httpEquiv",
679
+ nomodule: "noModule"
679
680
  };
680
- var ATTRIBUTE_TAGS_MAP = {
681
- as: ["link"],
682
- abbr: ["th", "td"],
683
- align: [
684
- "applet",
685
- "caption",
686
- "col",
687
- "colgroup",
688
- "hr",
689
- "iframe",
690
- "img",
691
- "table",
692
- "tbody",
693
- "td",
694
- "tfoot",
695
- "th",
696
- "thead",
697
- "tr"
698
- ],
699
- // deprecated, but known
700
- allowFullScreen: ["iframe", "video"],
701
- autoPictureInPicture: ["video"],
702
- charset: ["meta"],
703
- checked: ["input"],
704
- controls: ["audio", "video"],
705
- controlsList: ["audio", "video"],
706
- // image is required for SVG support, all other tags are HTML.
707
- crossOrigin: ["script", "img", "video", "audio", "link", "image"],
708
- disablePictureInPicture: ["video"],
709
- disableRemotePlayback: ["audio", "video"],
710
- displaystyle: ["math"],
711
- // https://html.spec.whatwg.org/multipage/links.html#downloading-resources
712
- download: ["a", "area"],
713
- fill: [
714
- // https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill
715
- // Fill color
716
- "altGlyph",
717
- "circle",
718
- "ellipse",
719
- "g",
720
- "line",
721
- "marker",
722
- "mask",
723
- "path",
724
- "polygon",
725
- "polyline",
726
- "rect",
727
- "svg",
728
- "symbol",
729
- "text",
730
- "textPath",
731
- "tref",
732
- "tspan",
733
- "use",
734
- // Animation final state
735
- "animate",
736
- "animateColor",
737
- "animateMotion",
738
- "animateTransform",
739
- "set"
740
- ],
741
- focusable: ["svg"],
742
- imageSizes: ["link"],
743
- imageSrcSet: ["link"],
744
- loop: ["audio", "video"],
745
- mozAllowFullScreen: ["iframe", "video"],
746
- muted: ["audio", "video"],
747
- noModule: ["script"],
748
- // Media events allowed only on audio and video tags, see https://github.com/facebook/react/blob/256aefbea1449869620fb26f6ec695536ab453f5/CHANGELOG.md#notable-enhancements
749
- onAbort: ["audio", "video"],
750
- onCanPlay: ["audio", "video"],
751
- onCanPlayThrough: ["audio", "video"],
752
- onCancel: ["dialog"],
753
- onClose: ["dialog"],
754
- onDurationChange: ["audio", "video"],
755
- onEmptied: ["audio", "video"],
756
- onEncrypted: ["audio", "video"],
757
- onEnded: ["audio", "video"],
758
- onError: ["audio", "video", "img", "link", "source", "script", "picture", "iframe"],
759
- onLoad: ["script", "img", "link", "picture", "iframe", "object", "source"],
760
- onLoadStart: ["audio", "video"],
761
- onLoadedData: ["audio", "video"],
762
- onLoadedMetadata: ["audio", "video"],
763
- onPause: ["audio", "video"],
764
- onPlay: ["audio", "video"],
765
- onPlaying: ["audio", "video"],
766
- onProgress: ["audio", "video"],
767
- onRateChange: ["audio", "video"],
768
- onResize: ["audio", "video"],
769
- onSeeked: ["audio", "video"],
770
- onSeeking: ["audio", "video"],
771
- onStalled: ["audio", "video"],
772
- onSuspend: ["audio", "video"],
773
- onTimeUpdate: ["audio", "video"],
774
- onVolumeChange: ["audio", "video"],
775
- onWaiting: ["audio", "video"],
776
- playsInline: ["video"],
777
- poster: ["video"],
778
- preload: ["audio", "video"],
779
- property: ["meta"],
780
- returnValue: ["dialog"],
781
- scrolling: ["iframe"],
782
- valign: ["tr", "td", "th", "thead", "tbody", "tfoot", "colgroup", "col"],
783
- // deprecated, but known
784
- viewBox: ["marker", "pattern", "svg", "symbol", "view"],
785
- webkitAllowFullScreen: ["iframe", "video"],
786
- webkitDirectory: ["input"]
681
+ /**
682
+ * Map of SVG attributes to their React camelCase equivalents
683
+ */
684
+ const SVGDOM_ATTRIBUTE_NAMES = {
685
+ "accent-height": "accentHeight",
686
+ "alignment-baseline": "alignmentBaseline",
687
+ "arabic-form": "arabicForm",
688
+ "baseline-shift": "baselineShift",
689
+ "cap-height": "capHeight",
690
+ "clip-path": "clipPath",
691
+ "clip-rule": "clipRule",
692
+ "color-interpolation": "colorInterpolation",
693
+ "color-interpolation-filters": "colorInterpolationFilters",
694
+ "color-profile": "colorProfile",
695
+ "color-rendering": "colorRendering",
696
+ "dominant-baseline": "dominantBaseline",
697
+ "enable-background": "enableBackground",
698
+ "fill-opacity": "fillOpacity",
699
+ "fill-rule": "fillRule",
700
+ "flood-color": "floodColor",
701
+ "flood-opacity": "floodOpacity",
702
+ "font-family": "fontFamily",
703
+ "font-size": "fontSize",
704
+ "font-size-adjust": "fontSizeAdjust",
705
+ "font-stretch": "fontStretch",
706
+ "font-style": "fontStyle",
707
+ "font-variant": "fontVariant",
708
+ "font-weight": "fontWeight",
709
+ "glyph-name": "glyphName",
710
+ "glyph-orientation-horizontal": "glyphOrientationHorizontal",
711
+ "glyph-orientation-vertical": "glyphOrientationVertical",
712
+ "horiz-adv-x": "horizAdvX",
713
+ "horiz-origin-x": "horizOriginX",
714
+ "image-rendering": "imageRendering",
715
+ "letter-spacing": "letterSpacing",
716
+ "lighting-color": "lightingColor",
717
+ "marker-end": "markerEnd",
718
+ "marker-mid": "markerMid",
719
+ "marker-start": "markerStart",
720
+ "overline-position": "overlinePosition",
721
+ "overline-thickness": "overlineThickness",
722
+ "paint-order": "paintOrder",
723
+ "panose-1": "panose1",
724
+ "pointer-events": "pointerEvents",
725
+ "rendering-intent": "renderingIntent",
726
+ "shape-rendering": "shapeRendering",
727
+ "stop-color": "stopColor",
728
+ "stop-opacity": "stopOpacity",
729
+ "strikethrough-position": "strikethroughPosition",
730
+ "strikethrough-thickness": "strikethroughThickness",
731
+ "stroke-dasharray": "strokeDasharray",
732
+ "stroke-dashoffset": "strokeDashoffset",
733
+ "stroke-linecap": "strokeLinecap",
734
+ "stroke-linejoin": "strokeLinejoin",
735
+ "stroke-miterlimit": "strokeMiterlimit",
736
+ "stroke-opacity": "strokeOpacity",
737
+ "stroke-width": "strokeWidth",
738
+ "text-anchor": "textAnchor",
739
+ "text-decoration": "textDecoration",
740
+ "text-rendering": "textRendering",
741
+ "underline-position": "underlinePosition",
742
+ "underline-thickness": "underlineThickness",
743
+ "unicode-bidi": "unicodeBidi",
744
+ "unicode-range": "unicodeRange",
745
+ "units-per-em": "unitsPerEm",
746
+ "v-alphabetic": "vAlphabetic",
747
+ "v-hanging": "vHanging",
748
+ "v-ideographic": "vIdeographic",
749
+ "v-mathematical": "vMathematical",
750
+ "vector-effect": "vectorEffect",
751
+ "vert-adv-y": "vertAdvY",
752
+ "vert-origin-x": "vertOriginX",
753
+ "vert-origin-y": "vertOriginY",
754
+ "word-spacing": "wordSpacing",
755
+ "writing-mode": "writingMode",
756
+ "x-height": "xHeight",
757
+ "xlink:actuate": "xlinkActuate",
758
+ "xlink:arcrole": "xlinkArcrole",
759
+ "xlink:href": "xlinkHref",
760
+ "xlink:role": "xlinkRole",
761
+ "xlink:show": "xlinkShow",
762
+ "xlink:title": "xlinkTitle",
763
+ "xlink:type": "xlinkType",
764
+ "xml:base": "xmlBase",
765
+ "xml:lang": "xmlLang",
766
+ "xml:space": "xmlSpace"
787
767
  };
788
- var SVGDOM_ATTRIBUTE_NAMES = {
789
- "accent-height": "accentHeight",
790
- "alignment-baseline": "alignmentBaseline",
791
- "arabic-form": "arabicForm",
792
- "baseline-shift": "baselineShift",
793
- "cap-height": "capHeight",
794
- "clip-path": "clipPath",
795
- "clip-rule": "clipRule",
796
- "color-interpolation": "colorInterpolation",
797
- "color-interpolation-filters": "colorInterpolationFilters",
798
- "color-profile": "colorProfile",
799
- "color-rendering": "colorRendering",
800
- "dominant-baseline": "dominantBaseline",
801
- "enable-background": "enableBackground",
802
- "fill-opacity": "fillOpacity",
803
- "fill-rule": "fillRule",
804
- "flood-color": "floodColor",
805
- "flood-opacity": "floodOpacity",
806
- "font-family": "fontFamily",
807
- "font-size": "fontSize",
808
- "font-size-adjust": "fontSizeAdjust",
809
- "font-stretch": "fontStretch",
810
- "font-style": "fontStyle",
811
- "font-variant": "fontVariant",
812
- "font-weight": "fontWeight",
813
- "glyph-name": "glyphName",
814
- "glyph-orientation-horizontal": "glyphOrientationHorizontal",
815
- "glyph-orientation-vertical": "glyphOrientationVertical",
816
- "horiz-adv-x": "horizAdvX",
817
- "horiz-origin-x": "horizOriginX",
818
- "image-rendering": "imageRendering",
819
- "letter-spacing": "letterSpacing",
820
- "lighting-color": "lightingColor",
821
- "marker-end": "markerEnd",
822
- "marker-mid": "markerMid",
823
- "marker-start": "markerStart",
824
- "overline-position": "overlinePosition",
825
- "overline-thickness": "overlineThickness",
826
- "paint-order": "paintOrder",
827
- "panose-1": "panose1",
828
- "pointer-events": "pointerEvents",
829
- "rendering-intent": "renderingIntent",
830
- "shape-rendering": "shapeRendering",
831
- "stop-color": "stopColor",
832
- "stop-opacity": "stopOpacity",
833
- "strikethrough-position": "strikethroughPosition",
834
- "strikethrough-thickness": "strikethroughThickness",
835
- "stroke-dasharray": "strokeDasharray",
836
- "stroke-dashoffset": "strokeDashoffset",
837
- "stroke-linecap": "strokeLinecap",
838
- "stroke-linejoin": "strokeLinejoin",
839
- "stroke-miterlimit": "strokeMiterlimit",
840
- "stroke-opacity": "strokeOpacity",
841
- "stroke-width": "strokeWidth",
842
- "text-anchor": "textAnchor",
843
- "text-decoration": "textDecoration",
844
- "text-rendering": "textRendering",
845
- "underline-position": "underlinePosition",
846
- "underline-thickness": "underlineThickness",
847
- "unicode-bidi": "unicodeBidi",
848
- "unicode-range": "unicodeRange",
849
- "units-per-em": "unitsPerEm",
850
- "v-alphabetic": "vAlphabetic",
851
- "v-hanging": "vHanging",
852
- "v-ideographic": "vIdeographic",
853
- "v-mathematical": "vMathematical",
854
- "vector-effect": "vectorEffect",
855
- "vert-adv-y": "vertAdvY",
856
- "vert-origin-x": "vertOriginX",
857
- "vert-origin-y": "vertOriginY",
858
- "word-spacing": "wordSpacing",
859
- "writing-mode": "writingMode",
860
- "x-height": "xHeight",
861
- "xlink:actuate": "xlinkActuate",
862
- "xlink:arcrole": "xlinkArcrole",
863
- "xlink:href": "xlinkHref",
864
- "xlink:role": "xlinkRole",
865
- "xlink:show": "xlinkShow",
866
- "xlink:title": "xlinkTitle",
867
- "xlink:type": "xlinkType",
868
- "xml:base": "xmlBase",
869
- "xml:lang": "xmlLang",
870
- "xml:space": "xmlSpace"
768
+ /**
769
+ * Map of attributes that are only valid on specific HTML tags
770
+ */
771
+ const ATTRIBUTE_TAGS_MAP = {
772
+ as: ["link"],
773
+ abbr: ["th", "td"],
774
+ align: [
775
+ "applet",
776
+ "caption",
777
+ "col",
778
+ "colgroup",
779
+ "hr",
780
+ "iframe",
781
+ "img",
782
+ "table",
783
+ "tbody",
784
+ "td",
785
+ "tfoot",
786
+ "th",
787
+ "thead",
788
+ "tr"
789
+ ],
790
+ allowFullScreen: ["iframe", "video"],
791
+ autoPictureInPicture: ["video"],
792
+ charset: ["meta"],
793
+ checked: ["input"],
794
+ controls: ["audio", "video"],
795
+ controlsList: ["audio", "video"],
796
+ crossOrigin: [
797
+ "script",
798
+ "img",
799
+ "video",
800
+ "audio",
801
+ "link",
802
+ "image"
803
+ ],
804
+ disablePictureInPicture: ["video"],
805
+ disableRemotePlayback: ["audio", "video"],
806
+ displaystyle: ["math"],
807
+ download: ["a", "area"],
808
+ fill: [
809
+ "altGlyph",
810
+ "circle",
811
+ "ellipse",
812
+ "g",
813
+ "line",
814
+ "marker",
815
+ "mask",
816
+ "path",
817
+ "polygon",
818
+ "polyline",
819
+ "rect",
820
+ "svg",
821
+ "symbol",
822
+ "text",
823
+ "textPath",
824
+ "tref",
825
+ "tspan",
826
+ "use",
827
+ "animate",
828
+ "animateColor",
829
+ "animateMotion",
830
+ "animateTransform",
831
+ "set"
832
+ ],
833
+ focusable: ["svg"],
834
+ imageSizes: ["link"],
835
+ imageSrcSet: ["link"],
836
+ loop: ["audio", "video"],
837
+ mozAllowFullScreen: ["iframe", "video"],
838
+ muted: ["audio", "video"],
839
+ noModule: ["script"],
840
+ onAbort: ["audio", "video"],
841
+ onCanPlay: ["audio", "video"],
842
+ onCanPlayThrough: ["audio", "video"],
843
+ onCancel: ["dialog"],
844
+ onClose: ["dialog"],
845
+ onDurationChange: ["audio", "video"],
846
+ onEmptied: ["audio", "video"],
847
+ onEncrypted: ["audio", "video"],
848
+ onEnded: ["audio", "video"],
849
+ onError: [
850
+ "audio",
851
+ "video",
852
+ "img",
853
+ "link",
854
+ "source",
855
+ "script",
856
+ "picture",
857
+ "iframe"
858
+ ],
859
+ onLoad: [
860
+ "script",
861
+ "img",
862
+ "link",
863
+ "picture",
864
+ "iframe",
865
+ "object",
866
+ "source"
867
+ ],
868
+ onLoadStart: ["audio", "video"],
869
+ onLoadedData: ["audio", "video"],
870
+ onLoadedMetadata: ["audio", "video"],
871
+ onPause: ["audio", "video"],
872
+ onPlay: ["audio", "video"],
873
+ onPlaying: ["audio", "video"],
874
+ onProgress: ["audio", "video"],
875
+ onRateChange: ["audio", "video"],
876
+ onResize: ["audio", "video"],
877
+ onSeeked: ["audio", "video"],
878
+ onSeeking: ["audio", "video"],
879
+ onStalled: ["audio", "video"],
880
+ onSuspend: ["audio", "video"],
881
+ onTimeUpdate: ["audio", "video"],
882
+ onVolumeChange: ["audio", "video"],
883
+ onWaiting: ["audio", "video"],
884
+ playsInline: ["video"],
885
+ poster: ["video"],
886
+ preload: ["audio", "video"],
887
+ property: ["meta"],
888
+ returnValue: ["dialog"],
889
+ scrolling: ["iframe"],
890
+ valign: [
891
+ "tr",
892
+ "td",
893
+ "th",
894
+ "thead",
895
+ "tbody",
896
+ "tfoot",
897
+ "colgroup",
898
+ "col"
899
+ ],
900
+ viewBox: [
901
+ "marker",
902
+ "pattern",
903
+ "svg",
904
+ "symbol",
905
+ "view"
906
+ ],
907
+ webkitAllowFullScreen: ["iframe", "video"],
908
+ webkitDirectory: ["input"]
871
909
  };
872
- var DOM_PROPERTY_NAMES_ONE_WORD = [
873
- // Global attributes - can be used on any HTML/DOM element
874
- // See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes
875
- "dir",
876
- "draggable",
877
- "hidden",
878
- "id",
879
- "lang",
880
- "nonce",
881
- "part",
882
- "slot",
883
- "style",
884
- "title",
885
- "translate",
886
- "inert",
887
- // Element specific attributes
888
- // See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes (includes global attributes too)
889
- // To be considered if these should be added also to ATTRIBUTE_TAGS_MAP
890
- "accept",
891
- "action",
892
- "allow",
893
- "alt",
894
- "as",
895
- "async",
896
- "buffered",
897
- "capture",
898
- "challenge",
899
- "cite",
900
- "code",
901
- "cols",
902
- "content",
903
- "coords",
904
- "csp",
905
- "data",
906
- "decoding",
907
- "default",
908
- "defer",
909
- "disabled",
910
- "form",
911
- "headers",
912
- "height",
913
- "high",
914
- "href",
915
- "icon",
916
- "importance",
917
- "integrity",
918
- "kind",
919
- "label",
920
- "language",
921
- "loading",
922
- "list",
923
- "loop",
924
- "low",
925
- "manifest",
926
- "max",
927
- "media",
928
- "method",
929
- "min",
930
- "multiple",
931
- "muted",
932
- "name",
933
- "open",
934
- "optimum",
935
- "pattern",
936
- "ping",
937
- "placeholder",
938
- "poster",
939
- "preload",
940
- "profile",
941
- "rel",
942
- "required",
943
- "reversed",
944
- "role",
945
- "rows",
946
- "sandbox",
947
- "scope",
948
- "seamless",
949
- "selected",
950
- "shape",
951
- "size",
952
- "sizes",
953
- "span",
954
- "src",
955
- "start",
956
- "step",
957
- "summary",
958
- "target",
959
- "type",
960
- "value",
961
- "width",
962
- "wmode",
963
- "wrap",
964
- // SVG attributes
965
- // See https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute
966
- "accumulate",
967
- "additive",
968
- "alphabetic",
969
- "amplitude",
970
- "ascent",
971
- "azimuth",
972
- "bbox",
973
- "begin",
974
- "bias",
975
- "by",
976
- "clip",
977
- "color",
978
- "cursor",
979
- "cx",
980
- "cy",
981
- "d",
982
- "decelerate",
983
- "descent",
984
- "direction",
985
- "display",
986
- "divisor",
987
- "dur",
988
- "dx",
989
- "dy",
990
- "elevation",
991
- "end",
992
- "exponent",
993
- "fill",
994
- "filter",
995
- "format",
996
- "from",
997
- "fr",
998
- "fx",
999
- "fy",
1000
- "g1",
1001
- "g2",
1002
- "hanging",
1003
- "height",
1004
- "hreflang",
1005
- "ideographic",
1006
- "in",
1007
- "in2",
1008
- "intercept",
1009
- "k",
1010
- "k1",
1011
- "k2",
1012
- "k3",
1013
- "k4",
1014
- "kerning",
1015
- "local",
1016
- "mask",
1017
- "mode",
1018
- "offset",
1019
- "opacity",
1020
- "operator",
1021
- "order",
1022
- "orient",
1023
- "orientation",
1024
- "origin",
1025
- "overflow",
1026
- "path",
1027
- "ping",
1028
- "points",
1029
- "r",
1030
- "radius",
1031
- "rel",
1032
- "restart",
1033
- "result",
1034
- "rotate",
1035
- "rx",
1036
- "ry",
1037
- "scale",
1038
- "seed",
1039
- "slope",
1040
- "spacing",
1041
- "speed",
1042
- "stemh",
1043
- "stemv",
1044
- "string",
1045
- "stroke",
1046
- "to",
1047
- "transform",
1048
- "u1",
1049
- "u2",
1050
- "unicode",
1051
- "values",
1052
- "version",
1053
- "visibility",
1054
- "widths",
1055
- "x",
1056
- "x1",
1057
- "x2",
1058
- "xmlns",
1059
- "y",
1060
- "y1",
1061
- "y2",
1062
- "z",
1063
- // OpenGraph meta tag attributes
1064
- "property",
1065
- // React specific attributes
1066
- "ref",
1067
- "key",
1068
- "children",
1069
- // Non-standard
1070
- "results",
1071
- "security",
1072
- // Video specific
1073
- "controls"
910
+ /**
911
+ * Single-word HTML/DOM properties
912
+ */
913
+ const DOM_PROPERTY_NAMES_ONE_WORD = [
914
+ "dir",
915
+ "draggable",
916
+ "hidden",
917
+ "id",
918
+ "lang",
919
+ "nonce",
920
+ "part",
921
+ "slot",
922
+ "style",
923
+ "title",
924
+ "translate",
925
+ "inert",
926
+ "accept",
927
+ "action",
928
+ "allow",
929
+ "alt",
930
+ "as",
931
+ "async",
932
+ "buffered",
933
+ "capture",
934
+ "challenge",
935
+ "cite",
936
+ "code",
937
+ "cols",
938
+ "content",
939
+ "coords",
940
+ "csp",
941
+ "data",
942
+ "decoding",
943
+ "default",
944
+ "defer",
945
+ "disabled",
946
+ "form",
947
+ "headers",
948
+ "height",
949
+ "high",
950
+ "href",
951
+ "icon",
952
+ "importance",
953
+ "integrity",
954
+ "kind",
955
+ "label",
956
+ "language",
957
+ "loading",
958
+ "list",
959
+ "loop",
960
+ "low",
961
+ "manifest",
962
+ "max",
963
+ "media",
964
+ "method",
965
+ "min",
966
+ "multiple",
967
+ "muted",
968
+ "name",
969
+ "open",
970
+ "optimum",
971
+ "pattern",
972
+ "ping",
973
+ "placeholder",
974
+ "poster",
975
+ "preload",
976
+ "profile",
977
+ "rel",
978
+ "required",
979
+ "reversed",
980
+ "role",
981
+ "rows",
982
+ "sandbox",
983
+ "scope",
984
+ "seamless",
985
+ "selected",
986
+ "shape",
987
+ "size",
988
+ "sizes",
989
+ "span",
990
+ "src",
991
+ "start",
992
+ "step",
993
+ "summary",
994
+ "target",
995
+ "type",
996
+ "value",
997
+ "width",
998
+ "wmode",
999
+ "wrap",
1000
+ "accumulate",
1001
+ "additive",
1002
+ "alphabetic",
1003
+ "amplitude",
1004
+ "ascent",
1005
+ "azimuth",
1006
+ "bbox",
1007
+ "begin",
1008
+ "bias",
1009
+ "by",
1010
+ "clip",
1011
+ "color",
1012
+ "cursor",
1013
+ "cx",
1014
+ "cy",
1015
+ "d",
1016
+ "decelerate",
1017
+ "descent",
1018
+ "direction",
1019
+ "display",
1020
+ "divisor",
1021
+ "dur",
1022
+ "dx",
1023
+ "dy",
1024
+ "elevation",
1025
+ "end",
1026
+ "exponent",
1027
+ "fill",
1028
+ "filter",
1029
+ "format",
1030
+ "from",
1031
+ "fr",
1032
+ "fx",
1033
+ "fy",
1034
+ "g1",
1035
+ "g2",
1036
+ "hanging",
1037
+ "height",
1038
+ "hreflang",
1039
+ "ideographic",
1040
+ "in",
1041
+ "in2",
1042
+ "intercept",
1043
+ "k",
1044
+ "k1",
1045
+ "k2",
1046
+ "k3",
1047
+ "k4",
1048
+ "kerning",
1049
+ "local",
1050
+ "mask",
1051
+ "mode",
1052
+ "offset",
1053
+ "opacity",
1054
+ "operator",
1055
+ "order",
1056
+ "orient",
1057
+ "orientation",
1058
+ "origin",
1059
+ "overflow",
1060
+ "path",
1061
+ "ping",
1062
+ "points",
1063
+ "r",
1064
+ "radius",
1065
+ "rel",
1066
+ "restart",
1067
+ "result",
1068
+ "rotate",
1069
+ "rx",
1070
+ "ry",
1071
+ "scale",
1072
+ "seed",
1073
+ "slope",
1074
+ "spacing",
1075
+ "speed",
1076
+ "stemh",
1077
+ "stemv",
1078
+ "string",
1079
+ "stroke",
1080
+ "to",
1081
+ "transform",
1082
+ "u1",
1083
+ "u2",
1084
+ "unicode",
1085
+ "values",
1086
+ "version",
1087
+ "visibility",
1088
+ "widths",
1089
+ "x",
1090
+ "x1",
1091
+ "x2",
1092
+ "xmlns",
1093
+ "y",
1094
+ "y1",
1095
+ "y2",
1096
+ "z",
1097
+ "property",
1098
+ "ref",
1099
+ "key",
1100
+ "children",
1101
+ "results",
1102
+ "security",
1103
+ "controls"
1074
1104
  ];
1075
- var DOM_PROPERTY_NAMES_TWO_WORDS = [
1076
- // Global attributes - can be used on any HTML/DOM element
1077
- // See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes
1078
- "accessKey",
1079
- "autoCapitalize",
1080
- "autoFocus",
1081
- "contentEditable",
1082
- "enterKeyHint",
1083
- "exportParts",
1084
- "inputMode",
1085
- "itemID",
1086
- "itemRef",
1087
- "itemProp",
1088
- "itemScope",
1089
- "itemType",
1090
- "spellCheck",
1091
- "tabIndex",
1092
- // Element specific attributes
1093
- // See https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes (includes global attributes too)
1094
- // To be considered if these should be added also to ATTRIBUTE_TAGS_MAP
1095
- "acceptCharset",
1096
- "autoComplete",
1097
- "autoPlay",
1098
- "border",
1099
- "cellPadding",
1100
- "cellSpacing",
1101
- "classID",
1102
- "codeBase",
1103
- "colSpan",
1104
- "contextMenu",
1105
- "dateTime",
1106
- "encType",
1107
- "formAction",
1108
- "formEncType",
1109
- "formMethod",
1110
- "formNoValidate",
1111
- "formTarget",
1112
- "frameBorder",
1113
- "hrefLang",
1114
- "httpEquiv",
1115
- "imageSizes",
1116
- "imageSrcSet",
1117
- "isMap",
1118
- "keyParams",
1119
- "keyType",
1120
- "marginHeight",
1121
- "marginWidth",
1122
- "maxLength",
1123
- "mediaGroup",
1124
- "minLength",
1125
- "noValidate",
1126
- "onAnimationEnd",
1127
- "onAnimationIteration",
1128
- "onAnimationStart",
1129
- "onBlur",
1130
- "onChange",
1131
- "onClick",
1132
- "onContextMenu",
1133
- "onCopy",
1134
- "onCompositionEnd",
1135
- "onCompositionStart",
1136
- "onCompositionUpdate",
1137
- "onCut",
1138
- "onDoubleClick",
1139
- "onDrag",
1140
- "onDragEnd",
1141
- "onDragEnter",
1142
- "onDragExit",
1143
- "onDragLeave",
1144
- "onError",
1145
- "onFocus",
1146
- "onInput",
1147
- "onKeyDown",
1148
- "onKeyPress",
1149
- "onKeyUp",
1150
- "onLoad",
1151
- "onWheel",
1152
- "onDragOver",
1153
- "onDragStart",
1154
- "onDrop",
1155
- "onMouseDown",
1156
- "onMouseEnter",
1157
- "onMouseLeave",
1158
- "onMouseMove",
1159
- "onMouseOut",
1160
- "onMouseOver",
1161
- "onMouseUp",
1162
- "onPaste",
1163
- "onScroll",
1164
- "onSelect",
1165
- "onSubmit",
1166
- "onToggle",
1167
- "onTransitionEnd",
1168
- "radioGroup",
1169
- "readOnly",
1170
- "referrerPolicy",
1171
- "rowSpan",
1172
- "srcDoc",
1173
- "srcLang",
1174
- "srcSet",
1175
- "useMap",
1176
- "fetchPriority",
1177
- // SVG attributes
1178
- // See https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute
1179
- "crossOrigin",
1180
- "accentHeight",
1181
- "alignmentBaseline",
1182
- "arabicForm",
1183
- "attributeName",
1184
- "attributeType",
1185
- "baseFrequency",
1186
- "baselineShift",
1187
- "baseProfile",
1188
- "calcMode",
1189
- "capHeight",
1190
- "clipPathUnits",
1191
- "clipPath",
1192
- "clipRule",
1193
- "colorInterpolation",
1194
- "colorInterpolationFilters",
1195
- "colorProfile",
1196
- "colorRendering",
1197
- "contentScriptType",
1198
- "contentStyleType",
1199
- "diffuseConstant",
1200
- "dominantBaseline",
1201
- "edgeMode",
1202
- "enableBackground",
1203
- "fillOpacity",
1204
- "fillRule",
1205
- "filterRes",
1206
- "filterUnits",
1207
- "floodColor",
1208
- "floodOpacity",
1209
- "fontFamily",
1210
- "fontSize",
1211
- "fontSizeAdjust",
1212
- "fontStretch",
1213
- "fontStyle",
1214
- "fontVariant",
1215
- "fontWeight",
1216
- "glyphName",
1217
- "glyphOrientationHorizontal",
1218
- "glyphOrientationVertical",
1219
- "glyphRef",
1220
- "gradientTransform",
1221
- "gradientUnits",
1222
- "horizAdvX",
1223
- "horizOriginX",
1224
- "imageRendering",
1225
- "kernelMatrix",
1226
- "kernelUnitLength",
1227
- "keyPoints",
1228
- "keySplines",
1229
- "keyTimes",
1230
- "lengthAdjust",
1231
- "letterSpacing",
1232
- "lightingColor",
1233
- "limitingConeAngle",
1234
- "markerEnd",
1235
- "markerMid",
1236
- "markerStart",
1237
- "markerHeight",
1238
- "markerUnits",
1239
- "markerWidth",
1240
- "maskContentUnits",
1241
- "maskUnits",
1242
- "mathematical",
1243
- "numOctaves",
1244
- "overlinePosition",
1245
- "overlineThickness",
1246
- "panose1",
1247
- "paintOrder",
1248
- "pathLength",
1249
- "patternContentUnits",
1250
- "patternTransform",
1251
- "patternUnits",
1252
- "pointerEvents",
1253
- "pointsAtX",
1254
- "pointsAtY",
1255
- "pointsAtZ",
1256
- "preserveAlpha",
1257
- "preserveAspectRatio",
1258
- "primitiveUnits",
1259
- "referrerPolicy",
1260
- "refX",
1261
- "refY",
1262
- "rendering-intent",
1263
- "repeatCount",
1264
- "repeatDur",
1265
- "requiredExtensions",
1266
- "requiredFeatures",
1267
- "shapeRendering",
1268
- "specularConstant",
1269
- "specularExponent",
1270
- "spreadMethod",
1271
- "startOffset",
1272
- "stdDeviation",
1273
- "stitchTiles",
1274
- "stopColor",
1275
- "stopOpacity",
1276
- "strikethroughPosition",
1277
- "strikethroughThickness",
1278
- "strokeDasharray",
1279
- "strokeDashoffset",
1280
- "strokeLinecap",
1281
- "strokeLinejoin",
1282
- "strokeMiterlimit",
1283
- "strokeOpacity",
1284
- "strokeWidth",
1285
- "surfaceScale",
1286
- "systemLanguage",
1287
- "tableValues",
1288
- "targetX",
1289
- "targetY",
1290
- "textAnchor",
1291
- "textDecoration",
1292
- "textRendering",
1293
- "textLength",
1294
- "transformOrigin",
1295
- "underlinePosition",
1296
- "underlineThickness",
1297
- "unicodeBidi",
1298
- "unicodeRange",
1299
- "unitsPerEm",
1300
- "vAlphabetic",
1301
- "vHanging",
1302
- "vIdeographic",
1303
- "vMathematical",
1304
- "vectorEffect",
1305
- "vertAdvY",
1306
- "vertOriginX",
1307
- "vertOriginY",
1308
- "viewBox",
1309
- "viewTarget",
1310
- "wordSpacing",
1311
- "writingMode",
1312
- "xHeight",
1313
- "xChannelSelector",
1314
- "xlinkActuate",
1315
- "xlinkArcrole",
1316
- "xlinkHref",
1317
- "xlinkRole",
1318
- "xlinkShow",
1319
- "xlinkTitle",
1320
- "xlinkType",
1321
- "xmlBase",
1322
- "xmlLang",
1323
- "xmlnsXlink",
1324
- "xmlSpace",
1325
- "yChannelSelector",
1326
- "zoomAndPan",
1327
- // Safari/Apple specific, no listing available
1328
- "autoCorrect",
1329
- // https://stackoverflow.com/questions/47985384/html-autocorrect-for-text-input-is-not-working
1330
- "autoSave",
1331
- // https://stackoverflow.com/questions/25456396/what-is-autosave-attribute-supposed-to-do-how-do-i-use-it
1332
- // React specific attributes https://reactjs.org/docs/dom-elements.html#differences-in-attributes
1333
- "className",
1334
- "dangerouslySetInnerHTML",
1335
- "defaultValue",
1336
- "defaultChecked",
1337
- "htmlFor",
1338
- // Events' capture events
1339
- "onBeforeInput",
1340
- "onChange",
1341
- "onInvalid",
1342
- "onReset",
1343
- "onTouchCancel",
1344
- "onTouchEnd",
1345
- "onTouchMove",
1346
- "onTouchStart",
1347
- "suppressContentEditableWarning",
1348
- "suppressHydrationWarning",
1349
- "onAbort",
1350
- "onCanPlay",
1351
- "onCanPlayThrough",
1352
- "onDurationChange",
1353
- "onEmptied",
1354
- "onEncrypted",
1355
- "onEnded",
1356
- "onLoadedData",
1357
- "onLoadedMetadata",
1358
- "onLoadStart",
1359
- "onPause",
1360
- "onPlay",
1361
- "onPlaying",
1362
- "onProgress",
1363
- "onRateChange",
1364
- "onResize",
1365
- "onSeeked",
1366
- "onSeeking",
1367
- "onStalled",
1368
- "onSuspend",
1369
- "onTimeUpdate",
1370
- "onVolumeChange",
1371
- "onWaiting",
1372
- "onCopyCapture",
1373
- "onCutCapture",
1374
- "onPasteCapture",
1375
- "onCompositionEndCapture",
1376
- "onCompositionStartCapture",
1377
- "onCompositionUpdateCapture",
1378
- "onFocusCapture",
1379
- "onBlurCapture",
1380
- "onChangeCapture",
1381
- "onBeforeInputCapture",
1382
- "onInputCapture",
1383
- "onResetCapture",
1384
- "onSubmitCapture",
1385
- "onInvalidCapture",
1386
- "onLoadCapture",
1387
- "onErrorCapture",
1388
- "onKeyDownCapture",
1389
- "onKeyPressCapture",
1390
- "onKeyUpCapture",
1391
- "onAbortCapture",
1392
- "onCanPlayCapture",
1393
- "onCanPlayThroughCapture",
1394
- "onDurationChangeCapture",
1395
- "onEmptiedCapture",
1396
- "onEncryptedCapture",
1397
- "onEndedCapture",
1398
- "onLoadedDataCapture",
1399
- "onLoadedMetadataCapture",
1400
- "onLoadStartCapture",
1401
- "onPauseCapture",
1402
- "onPlayCapture",
1403
- "onPlayingCapture",
1404
- "onProgressCapture",
1405
- "onRateChangeCapture",
1406
- "onSeekedCapture",
1407
- "onSeekingCapture",
1408
- "onStalledCapture",
1409
- "onSuspendCapture",
1410
- "onTimeUpdateCapture",
1411
- "onVolumeChangeCapture",
1412
- "onWaitingCapture",
1413
- "onSelectCapture",
1414
- "onTouchCancelCapture",
1415
- "onTouchEndCapture",
1416
- "onTouchMoveCapture",
1417
- "onTouchStartCapture",
1418
- "onScrollCapture",
1419
- "onWheelCapture",
1420
- "onAnimationEndCapture",
1421
- "onAnimationIteration",
1422
- "onAnimationStartCapture",
1423
- "onTransitionEndCapture",
1424
- "onAuxClick",
1425
- "onAuxClickCapture",
1426
- "onClickCapture",
1427
- "onContextMenuCapture",
1428
- "onDoubleClickCapture",
1429
- "onDragCapture",
1430
- "onDragEndCapture",
1431
- "onDragEnterCapture",
1432
- "onDragExitCapture",
1433
- "onDragLeaveCapture",
1434
- "onDragOverCapture",
1435
- "onDragStartCapture",
1436
- "onDropCapture",
1437
- "onMouseDown",
1438
- "onMouseDownCapture",
1439
- "onMouseMoveCapture",
1440
- "onMouseOutCapture",
1441
- "onMouseOverCapture",
1442
- "onMouseUpCapture",
1443
- // Video specific
1444
- "autoPictureInPicture",
1445
- "controlsList",
1446
- "disablePictureInPicture",
1447
- "disableRemotePlayback"
1105
+ /**
1106
+ * Multi-word (camelCase) HTML/DOM properties
1107
+ */
1108
+ const DOM_PROPERTY_NAMES_TWO_WORDS = [
1109
+ "accessKey",
1110
+ "autoCapitalize",
1111
+ "autoFocus",
1112
+ "contentEditable",
1113
+ "enterKeyHint",
1114
+ "exportParts",
1115
+ "inputMode",
1116
+ "itemID",
1117
+ "itemRef",
1118
+ "itemProp",
1119
+ "itemScope",
1120
+ "itemType",
1121
+ "spellCheck",
1122
+ "tabIndex",
1123
+ "acceptCharset",
1124
+ "autoComplete",
1125
+ "autoPlay",
1126
+ "border",
1127
+ "cellPadding",
1128
+ "cellSpacing",
1129
+ "classID",
1130
+ "codeBase",
1131
+ "colSpan",
1132
+ "contextMenu",
1133
+ "dateTime",
1134
+ "encType",
1135
+ "formAction",
1136
+ "formEncType",
1137
+ "formMethod",
1138
+ "formNoValidate",
1139
+ "formTarget",
1140
+ "frameBorder",
1141
+ "hrefLang",
1142
+ "httpEquiv",
1143
+ "imageSizes",
1144
+ "imageSrcSet",
1145
+ "isMap",
1146
+ "keyParams",
1147
+ "keyType",
1148
+ "marginHeight",
1149
+ "marginWidth",
1150
+ "maxLength",
1151
+ "mediaGroup",
1152
+ "minLength",
1153
+ "noValidate",
1154
+ "onAnimationEnd",
1155
+ "onAnimationIteration",
1156
+ "onAnimationStart",
1157
+ "onBlur",
1158
+ "onChange",
1159
+ "onClick",
1160
+ "onContextMenu",
1161
+ "onCopy",
1162
+ "onCompositionEnd",
1163
+ "onCompositionStart",
1164
+ "onCompositionUpdate",
1165
+ "onCut",
1166
+ "onDoubleClick",
1167
+ "onDrag",
1168
+ "onDragEnd",
1169
+ "onDragEnter",
1170
+ "onDragExit",
1171
+ "onDragLeave",
1172
+ "onError",
1173
+ "onFocus",
1174
+ "onInput",
1175
+ "onKeyDown",
1176
+ "onKeyPress",
1177
+ "onKeyUp",
1178
+ "onLoad",
1179
+ "onWheel",
1180
+ "onDragOver",
1181
+ "onDragStart",
1182
+ "onDrop",
1183
+ "onMouseDown",
1184
+ "onMouseEnter",
1185
+ "onMouseLeave",
1186
+ "onMouseMove",
1187
+ "onMouseOut",
1188
+ "onMouseOver",
1189
+ "onMouseUp",
1190
+ "onPaste",
1191
+ "onScroll",
1192
+ "onSelect",
1193
+ "onSubmit",
1194
+ "onToggle",
1195
+ "onTransitionEnd",
1196
+ "radioGroup",
1197
+ "readOnly",
1198
+ "referrerPolicy",
1199
+ "rowSpan",
1200
+ "srcDoc",
1201
+ "srcLang",
1202
+ "srcSet",
1203
+ "useMap",
1204
+ "fetchPriority",
1205
+ "crossOrigin",
1206
+ "accentHeight",
1207
+ "alignmentBaseline",
1208
+ "arabicForm",
1209
+ "attributeName",
1210
+ "attributeType",
1211
+ "baseFrequency",
1212
+ "baselineShift",
1213
+ "baseProfile",
1214
+ "calcMode",
1215
+ "capHeight",
1216
+ "clipPathUnits",
1217
+ "clipPath",
1218
+ "clipRule",
1219
+ "colorInterpolation",
1220
+ "colorInterpolationFilters",
1221
+ "colorProfile",
1222
+ "colorRendering",
1223
+ "contentScriptType",
1224
+ "contentStyleType",
1225
+ "diffuseConstant",
1226
+ "dominantBaseline",
1227
+ "edgeMode",
1228
+ "enableBackground",
1229
+ "fillOpacity",
1230
+ "fillRule",
1231
+ "filterRes",
1232
+ "filterUnits",
1233
+ "floodColor",
1234
+ "floodOpacity",
1235
+ "fontFamily",
1236
+ "fontSize",
1237
+ "fontSizeAdjust",
1238
+ "fontStretch",
1239
+ "fontStyle",
1240
+ "fontVariant",
1241
+ "fontWeight",
1242
+ "glyphName",
1243
+ "glyphOrientationHorizontal",
1244
+ "glyphOrientationVertical",
1245
+ "glyphRef",
1246
+ "gradientTransform",
1247
+ "gradientUnits",
1248
+ "horizAdvX",
1249
+ "horizOriginX",
1250
+ "imageRendering",
1251
+ "kernelMatrix",
1252
+ "kernelUnitLength",
1253
+ "keyPoints",
1254
+ "keySplines",
1255
+ "keyTimes",
1256
+ "lengthAdjust",
1257
+ "letterSpacing",
1258
+ "lightingColor",
1259
+ "limitingConeAngle",
1260
+ "markerEnd",
1261
+ "markerMid",
1262
+ "markerStart",
1263
+ "markerHeight",
1264
+ "markerUnits",
1265
+ "markerWidth",
1266
+ "maskContentUnits",
1267
+ "maskUnits",
1268
+ "mathematical",
1269
+ "numOctaves",
1270
+ "overlinePosition",
1271
+ "overlineThickness",
1272
+ "panose1",
1273
+ "paintOrder",
1274
+ "pathLength",
1275
+ "patternContentUnits",
1276
+ "patternTransform",
1277
+ "patternUnits",
1278
+ "pointerEvents",
1279
+ "pointsAtX",
1280
+ "pointsAtY",
1281
+ "pointsAtZ",
1282
+ "preserveAlpha",
1283
+ "preserveAspectRatio",
1284
+ "primitiveUnits",
1285
+ "referrerPolicy",
1286
+ "refX",
1287
+ "refY",
1288
+ "rendering-intent",
1289
+ "repeatCount",
1290
+ "repeatDur",
1291
+ "requiredExtensions",
1292
+ "requiredFeatures",
1293
+ "shapeRendering",
1294
+ "specularConstant",
1295
+ "specularExponent",
1296
+ "spreadMethod",
1297
+ "startOffset",
1298
+ "stdDeviation",
1299
+ "stitchTiles",
1300
+ "stopColor",
1301
+ "stopOpacity",
1302
+ "strikethroughPosition",
1303
+ "strikethroughThickness",
1304
+ "strokeDasharray",
1305
+ "strokeDashoffset",
1306
+ "strokeLinecap",
1307
+ "strokeLinejoin",
1308
+ "strokeMiterlimit",
1309
+ "strokeOpacity",
1310
+ "strokeWidth",
1311
+ "surfaceScale",
1312
+ "systemLanguage",
1313
+ "tableValues",
1314
+ "targetX",
1315
+ "targetY",
1316
+ "textAnchor",
1317
+ "textDecoration",
1318
+ "textRendering",
1319
+ "textLength",
1320
+ "transformOrigin",
1321
+ "underlinePosition",
1322
+ "underlineThickness",
1323
+ "unicodeBidi",
1324
+ "unicodeRange",
1325
+ "unitsPerEm",
1326
+ "vAlphabetic",
1327
+ "vHanging",
1328
+ "vIdeographic",
1329
+ "vMathematical",
1330
+ "vectorEffect",
1331
+ "vertAdvY",
1332
+ "vertOriginX",
1333
+ "vertOriginY",
1334
+ "viewBox",
1335
+ "viewTarget",
1336
+ "wordSpacing",
1337
+ "writingMode",
1338
+ "xHeight",
1339
+ "xChannelSelector",
1340
+ "xlinkActuate",
1341
+ "xlinkArcrole",
1342
+ "xlinkHref",
1343
+ "xlinkRole",
1344
+ "xlinkShow",
1345
+ "xlinkTitle",
1346
+ "xlinkType",
1347
+ "xmlBase",
1348
+ "xmlLang",
1349
+ "xmlnsXlink",
1350
+ "xmlSpace",
1351
+ "yChannelSelector",
1352
+ "zoomAndPan",
1353
+ "autoCorrect",
1354
+ "autoSave",
1355
+ "className",
1356
+ "dangerouslySetInnerHTML",
1357
+ "defaultValue",
1358
+ "defaultChecked",
1359
+ "htmlFor",
1360
+ "onBeforeInput",
1361
+ "onChange",
1362
+ "onInvalid",
1363
+ "onReset",
1364
+ "onTouchCancel",
1365
+ "onTouchEnd",
1366
+ "onTouchMove",
1367
+ "onTouchStart",
1368
+ "suppressContentEditableWarning",
1369
+ "suppressHydrationWarning",
1370
+ "onAbort",
1371
+ "onCanPlay",
1372
+ "onCanPlayThrough",
1373
+ "onDurationChange",
1374
+ "onEmptied",
1375
+ "onEncrypted",
1376
+ "onEnded",
1377
+ "onLoadedData",
1378
+ "onLoadedMetadata",
1379
+ "onLoadStart",
1380
+ "onPause",
1381
+ "onPlay",
1382
+ "onPlaying",
1383
+ "onProgress",
1384
+ "onRateChange",
1385
+ "onResize",
1386
+ "onSeeked",
1387
+ "onSeeking",
1388
+ "onStalled",
1389
+ "onSuspend",
1390
+ "onTimeUpdate",
1391
+ "onVolumeChange",
1392
+ "onWaiting",
1393
+ "onCopyCapture",
1394
+ "onCutCapture",
1395
+ "onPasteCapture",
1396
+ "onCompositionEndCapture",
1397
+ "onCompositionStartCapture",
1398
+ "onCompositionUpdateCapture",
1399
+ "onFocusCapture",
1400
+ "onBlurCapture",
1401
+ "onChangeCapture",
1402
+ "onBeforeInputCapture",
1403
+ "onInputCapture",
1404
+ "onResetCapture",
1405
+ "onSubmitCapture",
1406
+ "onInvalidCapture",
1407
+ "onLoadCapture",
1408
+ "onErrorCapture",
1409
+ "onKeyDownCapture",
1410
+ "onKeyPressCapture",
1411
+ "onKeyUpCapture",
1412
+ "onAbortCapture",
1413
+ "onCanPlayCapture",
1414
+ "onCanPlayThroughCapture",
1415
+ "onDurationChangeCapture",
1416
+ "onEmptiedCapture",
1417
+ "onEncryptedCapture",
1418
+ "onEndedCapture",
1419
+ "onLoadedDataCapture",
1420
+ "onLoadedMetadataCapture",
1421
+ "onLoadStartCapture",
1422
+ "onPauseCapture",
1423
+ "onPlayCapture",
1424
+ "onPlayingCapture",
1425
+ "onProgressCapture",
1426
+ "onRateChangeCapture",
1427
+ "onSeekedCapture",
1428
+ "onSeekingCapture",
1429
+ "onStalledCapture",
1430
+ "onSuspendCapture",
1431
+ "onTimeUpdateCapture",
1432
+ "onVolumeChangeCapture",
1433
+ "onWaitingCapture",
1434
+ "onSelectCapture",
1435
+ "onTouchCancelCapture",
1436
+ "onTouchEndCapture",
1437
+ "onTouchMoveCapture",
1438
+ "onTouchStartCapture",
1439
+ "onScrollCapture",
1440
+ "onWheelCapture",
1441
+ "onAnimationEndCapture",
1442
+ "onAnimationIteration",
1443
+ "onAnimationStartCapture",
1444
+ "onTransitionEndCapture",
1445
+ "onAuxClick",
1446
+ "onAuxClickCapture",
1447
+ "onClickCapture",
1448
+ "onContextMenuCapture",
1449
+ "onDoubleClickCapture",
1450
+ "onDragCapture",
1451
+ "onDragEndCapture",
1452
+ "onDragEnterCapture",
1453
+ "onDragExitCapture",
1454
+ "onDragLeaveCapture",
1455
+ "onDragOverCapture",
1456
+ "onDragStartCapture",
1457
+ "onDropCapture",
1458
+ "onMouseDown",
1459
+ "onMouseDownCapture",
1460
+ "onMouseMoveCapture",
1461
+ "onMouseOutCapture",
1462
+ "onMouseOverCapture",
1463
+ "onMouseUpCapture",
1464
+ "autoPictureInPicture",
1465
+ "controlsList",
1466
+ "disablePictureInPicture",
1467
+ "disableRemotePlayback"
1448
1468
  ];
1449
- var DOM_PROPERTIES_IGNORE_CASE = [
1450
- "charset",
1451
- "allowFullScreen",
1452
- "webkitAllowFullScreen",
1453
- "mozAllowFullScreen",
1454
- "webkitDirectory"
1469
+ /**
1470
+ * DOM properties that are exempt from case sensitivity checks
1471
+ */
1472
+ const DOM_PROPERTIES_IGNORE_CASE = [
1473
+ "charset",
1474
+ "allowFullScreen",
1475
+ "webkitAllowFullScreen",
1476
+ "mozAllowFullScreen",
1477
+ "webkitDirectory"
1455
1478
  ];
1456
- var ARIA_PROPERTIES = [
1457
- // See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes
1458
- // Global attributes
1459
- "aria-atomic",
1460
- "aria-braillelabel",
1461
- "aria-brailleroledescription",
1462
- "aria-busy",
1463
- "aria-controls",
1464
- "aria-current",
1465
- "aria-describedby",
1466
- "aria-description",
1467
- "aria-details",
1468
- "aria-disabled",
1469
- "aria-dropeffect",
1470
- "aria-errormessage",
1471
- "aria-flowto",
1472
- "aria-grabbed",
1473
- "aria-haspopup",
1474
- "aria-hidden",
1475
- "aria-invalid",
1476
- "aria-keyshortcuts",
1477
- "aria-label",
1478
- "aria-labelledby",
1479
- "aria-live",
1480
- "aria-owns",
1481
- "aria-relevant",
1482
- "aria-roledescription",
1483
- // Widget attributes
1484
- "aria-autocomplete",
1485
- "aria-checked",
1486
- "aria-expanded",
1487
- "aria-level",
1488
- "aria-modal",
1489
- "aria-multiline",
1490
- "aria-multiselectable",
1491
- "aria-orientation",
1492
- "aria-placeholder",
1493
- "aria-pressed",
1494
- "aria-readonly",
1495
- "aria-required",
1496
- "aria-selected",
1497
- "aria-sort",
1498
- "aria-valuemax",
1499
- "aria-valuemin",
1500
- "aria-valuenow",
1501
- "aria-valuetext",
1502
- // Relationship attributes
1503
- "aria-activedescendant",
1504
- "aria-colcount",
1505
- "aria-colindex",
1506
- "aria-colindextext",
1507
- "aria-colspan",
1508
- "aria-posinset",
1509
- "aria-rowcount",
1510
- "aria-rowindex",
1511
- "aria-rowindextext",
1512
- "aria-rowspan",
1513
- "aria-setsize"
1479
+ /**
1480
+ * List of ARIA attributes
1481
+ */
1482
+ const ARIA_PROPERTIES = [
1483
+ "aria-atomic",
1484
+ "aria-braillelabel",
1485
+ "aria-brailleroledescription",
1486
+ "aria-busy",
1487
+ "aria-controls",
1488
+ "aria-current",
1489
+ "aria-describedby",
1490
+ "aria-description",
1491
+ "aria-details",
1492
+ "aria-disabled",
1493
+ "aria-dropeffect",
1494
+ "aria-errormessage",
1495
+ "aria-flowto",
1496
+ "aria-grabbed",
1497
+ "aria-haspopup",
1498
+ "aria-hidden",
1499
+ "aria-invalid",
1500
+ "aria-keyshortcuts",
1501
+ "aria-label",
1502
+ "aria-labelledby",
1503
+ "aria-live",
1504
+ "aria-owns",
1505
+ "aria-relevant",
1506
+ "aria-roledescription",
1507
+ "aria-autocomplete",
1508
+ "aria-checked",
1509
+ "aria-expanded",
1510
+ "aria-level",
1511
+ "aria-modal",
1512
+ "aria-multiline",
1513
+ "aria-multiselectable",
1514
+ "aria-orientation",
1515
+ "aria-placeholder",
1516
+ "aria-pressed",
1517
+ "aria-readonly",
1518
+ "aria-required",
1519
+ "aria-selected",
1520
+ "aria-sort",
1521
+ "aria-valuemax",
1522
+ "aria-valuemin",
1523
+ "aria-valuenow",
1524
+ "aria-valuetext",
1525
+ "aria-activedescendant",
1526
+ "aria-colcount",
1527
+ "aria-colindex",
1528
+ "aria-colindextext",
1529
+ "aria-colspan",
1530
+ "aria-posinset",
1531
+ "aria-rowcount",
1532
+ "aria-rowindex",
1533
+ "aria-rowindextext",
1534
+ "aria-rowspan",
1535
+ "aria-setsize"
1514
1536
  ];
1515
- var REACT_ON_PROPS = [
1516
- "onGotPointerCapture",
1517
- "onGotPointerCaptureCapture",
1518
- "onLostPointerCapture",
1519
- "onLostPointerCapture",
1520
- "onLostPointerCaptureCapture",
1521
- "onPointerCancel",
1522
- "onPointerCancelCapture",
1523
- "onPointerDown",
1524
- "onPointerDownCapture",
1525
- "onPointerEnter",
1526
- "onPointerEnterCapture",
1527
- "onPointerLeave",
1528
- "onPointerLeaveCapture",
1529
- "onPointerMove",
1530
- "onPointerMoveCapture",
1531
- "onPointerOut",
1532
- "onPointerOutCapture",
1533
- "onPointerOver",
1534
- "onPointerOverCapture",
1535
- "onPointerUp",
1536
- "onPointerUpCapture"
1537
+ /**
1538
+ * React-specific pointer event handlers added in React 16.4
1539
+ */
1540
+ const REACT_ON_PROPS = [
1541
+ "onGotPointerCapture",
1542
+ "onGotPointerCaptureCapture",
1543
+ "onLostPointerCapture",
1544
+ "onLostPointerCapture",
1545
+ "onLostPointerCaptureCapture",
1546
+ "onPointerCancel",
1547
+ "onPointerCancelCapture",
1548
+ "onPointerDown",
1549
+ "onPointerDownCapture",
1550
+ "onPointerEnter",
1551
+ "onPointerEnterCapture",
1552
+ "onPointerLeave",
1553
+ "onPointerLeaveCapture",
1554
+ "onPointerMove",
1555
+ "onPointerMoveCapture",
1556
+ "onPointerOut",
1557
+ "onPointerOutCapture",
1558
+ "onPointerOver",
1559
+ "onPointerOverCapture",
1560
+ "onPointerUp",
1561
+ "onPointerUpCapture"
1537
1562
  ];
1538
- var POPOVER_API_PROPS = [
1539
- "popover",
1540
- "popoverTarget",
1541
- "popoverTargetAction",
1542
- "onToggle",
1543
- "onBeforeToggle"
1563
+ /**
1564
+ * Popover API properties added in React 19
1565
+ */
1566
+ const POPOVER_API_PROPS = [
1567
+ "popover",
1568
+ "popoverTarget",
1569
+ "popoverTargetAction",
1570
+ "onToggle",
1571
+ "onBeforeToggle"
1544
1572
  ];
1573
+ /**
1574
+ * Gets all valid DOM property names based on React version
1575
+ * @param context - ESLint rule context
1576
+ * @returns Array of valid DOM property names
1577
+ */
1545
1578
  function getDOMPropertyNames(context) {
1546
- const ALL_DOM_PROPERTY_NAMES = DOM_PROPERTY_NAMES_TWO_WORDS.concat(DOM_PROPERTY_NAMES_ONE_WORD);
1547
- if (testReactVersion(context, "<=", "16.1.0")) {
1548
- ALL_DOM_PROPERTY_NAMES.push("allowTransparency");
1549
- return ALL_DOM_PROPERTY_NAMES;
1550
- }
1551
- if (testReactVersion(context, ">=", "16.4.0")) {
1552
- ALL_DOM_PROPERTY_NAMES.push(...REACT_ON_PROPS);
1553
- }
1554
- testReactVersion(context, ">=", "19.0.0-rc.0") ? ALL_DOM_PROPERTY_NAMES.push(...POPOVER_API_PROPS) : ALL_DOM_PROPERTY_NAMES.push(...POPOVER_API_PROPS.map((prop) => prop.toLowerCase()));
1555
- return ALL_DOM_PROPERTY_NAMES;
1579
+ const ALL_DOM_PROPERTY_NAMES = DOM_PROPERTY_NAMES_TWO_WORDS.concat(DOM_PROPERTY_NAMES_ONE_WORD);
1580
+ if (testReactVersion(context, "<=", "16.1.0")) {
1581
+ ALL_DOM_PROPERTY_NAMES.push("allowTransparency");
1582
+ return ALL_DOM_PROPERTY_NAMES;
1583
+ }
1584
+ if (testReactVersion(context, ">=", "16.4.0")) ALL_DOM_PROPERTY_NAMES.push(...REACT_ON_PROPS);
1585
+ testReactVersion(context, ">=", "19.0.0-rc.0") ? ALL_DOM_PROPERTY_NAMES.push(...POPOVER_API_PROPS) : ALL_DOM_PROPERTY_NAMES.push(...POPOVER_API_PROPS.map((prop) => prop.toLowerCase()));
1586
+ return ALL_DOM_PROPERTY_NAMES;
1556
1587
  }
1588
+ /**
1589
+ * Checks if a node's parent is a JSX tag that is written with lowercase letters,
1590
+ * and is not a custom web component.
1591
+ * @param childNode - JSX element being tested
1592
+ * @returns Whether the node is a valid HTML tag in JSX
1593
+ */
1557
1594
  function isValidHTMLTagInJSX(childNode) {
1558
- const tagConvention = /^[a-z][^-]*$/;
1559
- if (tagConvention.test(childNode.parent.name.name)) {
1560
- return !childNode.parent.attributes.some(
1561
- (attrNode) => attrNode.type === "JSXAttribute" && attrNode.name.type === "JSXIdentifier" && attrNode.name.name === "is"
1562
- // To learn more about custom web components and `is` attribute,
1563
- // see https://html.spec.whatwg.org/multipage/custom-elements.html#custom-elements-customized-builtin-example
1564
- );
1565
- }
1566
- return false;
1595
+ if (/^[a-z][^-]*$/.test(childNode.parent.name.name)) return !childNode.parent.attributes.some((attrNode) => attrNode.type === "JSXAttribute" && attrNode.name.type === "JSXIdentifier" && attrNode.name.name === "is");
1596
+ return false;
1567
1597
  }
1568
- function normalizeAttributeCase(name3) {
1569
- return DOM_PROPERTIES_IGNORE_CASE.find((element) => element.toLowerCase() === name3.toLowerCase()) || name3;
1598
+ /**
1599
+ * Normalizes attribute names that should be case-insensitive
1600
+ * @param name - Attribute name to normalize
1601
+ * @returns Normalized attribute name
1602
+ */
1603
+ function normalizeAttributeCase(name$2) {
1604
+ return DOM_PROPERTIES_IGNORE_CASE.find((element) => element.toLowerCase() === name$2.toLowerCase()) || name$2;
1570
1605
  }
1571
- function isValidDataAttribute(name3) {
1572
- return !/^data-xml/i.test(name3) && /^data-[^:]*$/.test(name3);
1606
+ /**
1607
+ * Checks if an attribute name is a valid data-* attribute
1608
+ * @param name - Attribute name to test
1609
+ * @returns Whether the attribute is a valid data attribute
1610
+ */
1611
+ function isValidDataAttribute(name$2) {
1612
+ return !/^data-xml/i.test(name$2) && /^data-[^:]*$/.test(name$2);
1573
1613
  }
1574
- function hasUpperCaseCharacter(name3) {
1575
- return name3.toLowerCase() !== name3;
1614
+ /**
1615
+ * Checks if an attribute name has uppercase characters
1616
+ * @param name - Attribute name to test
1617
+ * @returns Whether the name has uppercase characters
1618
+ */
1619
+ function hasUpperCaseCharacter(name$2) {
1620
+ return name$2.toLowerCase() !== name$2;
1576
1621
  }
1577
- function isValidAriaAttribute(name3) {
1578
- return ARIA_PROPERTIES.some((element) => element === name3);
1622
+ /**
1623
+ * Checks if an attribute is a valid ARIA attribute
1624
+ * @param name - Attribute name to test
1625
+ * @returns Whether the attribute is a valid ARIA attribute
1626
+ */
1627
+ function isValidAriaAttribute(name$2) {
1628
+ return ARIA_PROPERTIES.some((element) => element === name$2);
1579
1629
  }
1630
+ /**
1631
+ * Gets the tag name for a JSXAttribute
1632
+ * @param node - JSXAttribute to get tag name from
1633
+ * @returns Tag name or null
1634
+ */
1580
1635
  function getTagName(node) {
1581
- if (node?.parent?.name) {
1582
- return node.parent.name.name;
1583
- }
1584
- return null;
1636
+ if (node?.parent?.name) return node.parent.name.name;
1637
+ return null;
1585
1638
  }
1639
+ /**
1640
+ * Checks if the tag name has a dot (member expression)
1641
+ * @param node - JSXAttribute to check
1642
+ * @returns Whether the tag name has a dot
1643
+ */
1586
1644
  function tagNameHasDot(node) {
1587
- return !!(node.parent?.name && node.parent.name.type === "JSXMemberExpression");
1645
+ return !!(node.parent?.name && node.parent.name.type === "JSXMemberExpression");
1588
1646
  }
1589
- function getStandardName(name3, context) {
1590
- if (has(DOM_ATTRIBUTE_NAMES, name3)) {
1591
- return DOM_ATTRIBUTE_NAMES[name3];
1592
- }
1593
- if (has(SVGDOM_ATTRIBUTE_NAMES, name3)) {
1594
- return SVGDOM_ATTRIBUTE_NAMES[name3];
1595
- }
1596
- const names = getDOMPropertyNames(context);
1597
- return names.find((element) => element.toLowerCase() === name3.toLowerCase());
1598
- }
1599
- var messages = {
1600
- dataLowercaseRequired: "React does not recognize data-* props with uppercase characters on a DOM element. Found '{{name}}', use '{{lowerCaseName}}' instead",
1601
- invalidPropOnTag: "Invalid property '{{name}}' found on tag '{{tagName}}', but it is only allowed on: {{allowedTags}}",
1602
- unknownProp: "Unknown property '{{name}}' found",
1603
- unknownPropWithStandardName: "Unknown property '{{name}}' found, use '{{standardName}}' instead"
1604
- };
1605
- var no_unknown_property_default = createRule({
1606
- meta: {
1607
- type: "problem",
1608
- docs: {
1609
- description: "Disallow unknown `DOM` property."
1610
- },
1611
- fixable: "code",
1612
- messages,
1613
- schema: [{
1614
- type: "object",
1615
- additionalProperties: false,
1616
- properties: {
1617
- ignore: {
1618
- type: "array",
1619
- items: {
1620
- type: "string"
1621
- }
1622
- },
1623
- requireDataLowercase: {
1624
- type: "boolean",
1625
- default: false
1626
- }
1627
- }
1628
- }]
1629
- },
1630
- name: RULE_NAME12,
1631
- create: create12,
1632
- defaultOptions: []
1633
- });
1634
- function create12(context) {
1635
- const report = Reporter.make(context);
1636
- function getIgnoreConfig() {
1637
- return context.options[0]?.ignore || DEFAULTS.ignore;
1638
- }
1639
- function getRequireDataLowercase() {
1640
- return context.options[0] && typeof context.options[0].requireDataLowercase !== "undefined" ? !!context.options[0].requireDataLowercase : DEFAULTS.requireDataLowercase;
1641
- }
1642
- return {
1643
- JSXAttribute(node) {
1644
- const ignoreNames = getIgnoreConfig();
1645
- const actualName = getText(context, node.name);
1646
- if (ignoreNames.indexOf(actualName) >= 0) {
1647
- return;
1648
- }
1649
- const name3 = normalizeAttributeCase(actualName);
1650
- if (tagNameHasDot(node)) {
1651
- return;
1652
- }
1653
- if (isValidDataAttribute(name3)) {
1654
- if (getRequireDataLowercase() && hasUpperCaseCharacter(name3)) {
1655
- report.send({
1656
- node,
1657
- messageId: "dataLowercaseRequired",
1658
- data: {
1659
- name: actualName,
1660
- lowerCaseName: actualName.toLowerCase()
1661
- }
1662
- });
1663
- }
1664
- return;
1665
- }
1666
- if (isValidAriaAttribute(name3)) return;
1667
- const tagName = getTagName(node);
1668
- if (tagName === "fbt" || tagName === "fbs") return;
1669
- if (!isValidHTMLTagInJSX(node)) return;
1670
- const allowedTags = has(ATTRIBUTE_TAGS_MAP, name3) ? ATTRIBUTE_TAGS_MAP[name3] : null;
1671
- if (tagName && allowedTags) {
1672
- if (allowedTags.indexOf(tagName) === -1) {
1673
- report.send({
1674
- node,
1675
- messageId: "invalidPropOnTag",
1676
- data: {
1677
- name: actualName,
1678
- allowedTags: allowedTags.join(", "),
1679
- tagName
1680
- }
1681
- });
1682
- }
1683
- return;
1684
- }
1685
- const standardName = getStandardName(name3, context);
1686
- const hasStandardNameButIsNotUsed = standardName && standardName !== name3;
1687
- const usesStandardName = standardName && standardName === name3;
1688
- if (usesStandardName) {
1689
- return;
1690
- }
1691
- if (hasStandardNameButIsNotUsed) {
1692
- report.send({
1693
- node,
1694
- messageId: "unknownPropWithStandardName",
1695
- data: {
1696
- name: actualName,
1697
- standardName
1698
- },
1699
- fix(fixer) {
1700
- return fixer.replaceText(node.name, standardName);
1701
- }
1702
- });
1703
- return;
1704
- }
1705
- report.send({
1706
- node,
1707
- messageId: "unknownProp",
1708
- data: {
1709
- name: actualName
1710
- }
1711
- });
1712
- }
1713
- };
1647
+ /**
1648
+ * Gets the standard name of an attribute
1649
+ * @param name - Attribute name
1650
+ * @param context - ESLint context
1651
+ * @returns Standard name or undefined
1652
+ */
1653
+ function getStandardName(name$2, context) {
1654
+ if (has(DOM_ATTRIBUTE_NAMES, name$2)) return DOM_ATTRIBUTE_NAMES[name$2];
1655
+ if (has(SVGDOM_ATTRIBUTE_NAMES, name$2)) return SVGDOM_ATTRIBUTE_NAMES[name$2];
1656
+ return getDOMPropertyNames(context).find((element) => element.toLowerCase() === name$2.toLowerCase());
1714
1657
  }
1658
+ /**
1659
+ * Checks if an object has a property
1660
+ * @param obj - Object to check
1661
+ * @param key - Key to check for
1662
+ * @returns Whether the object has the property
1663
+ */
1715
1664
  function has(obj, key) {
1716
- return Object.hasOwn(obj, key);
1665
+ return Object.hasOwn(obj, key);
1717
1666
  }
1667
+ /**
1668
+ * Gets text of a node
1669
+ * @param context - ESLint context
1670
+ * @param node - Node to get text from
1671
+ * @returns Node's text
1672
+ */
1718
1673
  function getText(context, node) {
1719
- return context.sourceCode.getText(node);
1674
+ return context.sourceCode.getText(node);
1720
1675
  }
1721
- function testReactVersion(context, comparator, version2) {
1722
- const { version: localVersion } = getSettingsFromContext(context);
1723
- return compare(localVersion, version2, comparator);
1676
+ /**
1677
+ * Tests React version against a comparator
1678
+ * @param context - ESLint context
1679
+ * @param comparator - Comparison operator
1680
+ * @param version - Version to compare against
1681
+ * @returns Comparison result
1682
+ */
1683
+ function testReactVersion(context, comparator, version$1) {
1684
+ const { version: localVersion } = getSettingsFromContext(context);
1685
+ return compare(localVersion, version$1, comparator);
1724
1686
  }
1725
- var RULE_NAME13 = "no-unsafe-iframe-sandbox";
1726
- var RULE_FEATURES12 = [];
1727
- var unsafeSandboxValues = [
1728
- ["allow-scripts", "allow-same-origin"]
1729
- ];
1730
- function hasSafeSandbox(value) {
1731
- if (typeof value !== "string") return false;
1732
- return !unsafeSandboxValues.some((values) => {
1733
- return values.every((v) => value.includes(v));
1734
- });
1687
+ const messages = {
1688
+ dataLowercaseRequired: "React does not recognize data-* props with uppercase characters on a DOM element. Found '{{name}}', use '{{lowerCaseName}}' instead",
1689
+ invalidPropOnTag: "Invalid property '{{name}}' found on tag '{{tagName}}', but it is only allowed on: {{allowedTags}}",
1690
+ unknownProp: "Unknown property '{{name}}' found",
1691
+ unknownPropWithStandardName: "Unknown property '{{name}}' found, use '{{standardName}}' instead"
1692
+ };
1693
+ var no_unknown_property_default = createRule({
1694
+ meta: {
1695
+ type: "problem",
1696
+ docs: { description: "Disallow unknown `DOM` property." },
1697
+ fixable: "code",
1698
+ messages,
1699
+ schema: [{
1700
+ type: "object",
1701
+ additionalProperties: false,
1702
+ properties: {
1703
+ ignore: {
1704
+ type: "array",
1705
+ items: { type: "string" }
1706
+ },
1707
+ requireDataLowercase: {
1708
+ type: "boolean",
1709
+ default: false
1710
+ }
1711
+ }
1712
+ }]
1713
+ },
1714
+ name: RULE_NAME$4,
1715
+ create: create$4,
1716
+ defaultOptions: []
1717
+ });
1718
+ /**
1719
+ * Create function for the ESLint rule
1720
+ * @param context - ESLint rule context
1721
+ * @returns Rule listener
1722
+ */
1723
+ function create$4(context) {
1724
+ /**
1725
+ * Gets the ignore configuration from rule options
1726
+ * @returns Array of attribute names to ignore
1727
+ */
1728
+ function getIgnoreConfig() {
1729
+ return context.options[0]?.ignore || DEFAULTS.ignore;
1730
+ }
1731
+ /**
1732
+ * Gets the requireDataLowercase option from rule options
1733
+ * @returns Whether data attributes must be lowercase
1734
+ */
1735
+ function getRequireDataLowercase() {
1736
+ return context.options[0] && typeof context.options[0].requireDataLowercase !== "undefined" ? !!context.options[0].requireDataLowercase : DEFAULTS.requireDataLowercase;
1737
+ }
1738
+ return { JSXAttribute(node) {
1739
+ const ignoreNames = getIgnoreConfig();
1740
+ const actualName = getText(context, node.name);
1741
+ if (ignoreNames.indexOf(actualName) >= 0) return;
1742
+ const name$2 = normalizeAttributeCase(actualName);
1743
+ if (tagNameHasDot(node)) return;
1744
+ if (isValidDataAttribute(name$2)) {
1745
+ if (getRequireDataLowercase() && hasUpperCaseCharacter(name$2)) context.report({
1746
+ node,
1747
+ messageId: "dataLowercaseRequired",
1748
+ data: {
1749
+ name: actualName,
1750
+ lowerCaseName: actualName.toLowerCase()
1751
+ }
1752
+ });
1753
+ return;
1754
+ }
1755
+ if (isValidAriaAttribute(name$2)) return;
1756
+ const tagName = getTagName(node);
1757
+ if (tagName === "fbt" || tagName === "fbs") return;
1758
+ if (!isValidHTMLTagInJSX(node)) return;
1759
+ const allowedTags = has(ATTRIBUTE_TAGS_MAP, name$2) ? ATTRIBUTE_TAGS_MAP[name$2] : null;
1760
+ if (tagName && allowedTags) {
1761
+ if (allowedTags.indexOf(tagName) === -1) context.report({
1762
+ node,
1763
+ messageId: "invalidPropOnTag",
1764
+ data: {
1765
+ name: actualName,
1766
+ allowedTags: allowedTags.join(", "),
1767
+ tagName
1768
+ }
1769
+ });
1770
+ return;
1771
+ }
1772
+ const standardName = getStandardName(name$2, context);
1773
+ const hasStandardNameButIsNotUsed = !!standardName && standardName !== name$2;
1774
+ if (!!standardName && standardName === name$2) return;
1775
+ if (hasStandardNameButIsNotUsed) {
1776
+ context.report({
1777
+ node,
1778
+ messageId: "unknownPropWithStandardName",
1779
+ data: {
1780
+ name: actualName,
1781
+ standardName
1782
+ },
1783
+ fix(fixer) {
1784
+ return fixer.replaceText(node.name, standardName);
1785
+ }
1786
+ });
1787
+ return;
1788
+ }
1789
+ context.report({
1790
+ node,
1791
+ messageId: "unknownProp",
1792
+ data: { name: actualName }
1793
+ });
1794
+ } };
1795
+ }
1796
+
1797
+ //#endregion
1798
+ //#region src/rules/no-unsafe-iframe-sandbox.ts
1799
+ const RULE_NAME$3 = "no-unsafe-iframe-sandbox";
1800
+ const RULE_FEATURES$3 = [];
1801
+ const unsafeSandboxValues = [["allow-scripts", "allow-same-origin"]];
1802
+ function isSafeSandbox(value) {
1803
+ if (typeof value !== "string") return false;
1804
+ return !unsafeSandboxValues.some((values) => {
1805
+ return values.every((v) => value.includes(v));
1806
+ });
1735
1807
  }
1736
1808
  var no_unsafe_iframe_sandbox_default = createRule({
1737
- meta: {
1738
- type: "problem",
1739
- docs: {
1740
- description: "Enforces `sandbox` attribute for `iframe` elements is not set to unsafe combinations.",
1741
- [Symbol.for("rule_features")]: RULE_FEATURES12
1742
- },
1743
- messages: {
1744
- noUnsafeIframeSandbox: "Unsafe 'sandbox' attribute value on 'iframe' component."
1745
- },
1746
- schema: []
1747
- },
1748
- name: RULE_NAME13,
1749
- create: create13,
1750
- defaultOptions: []
1809
+ meta: {
1810
+ type: "problem",
1811
+ docs: {
1812
+ description: "Enforces `sandbox` attribute for `iframe` elements is not set to unsafe combinations.",
1813
+ [Symbol.for("rule_features")]: RULE_FEATURES$3
1814
+ },
1815
+ messages: { noUnsafeIframeSandbox: "Unsafe 'sandbox' attribute value on 'iframe' component." },
1816
+ schema: []
1817
+ },
1818
+ name: RULE_NAME$3,
1819
+ create: create$3,
1820
+ defaultOptions: []
1751
1821
  });
1752
- function create13(context) {
1753
- const resolver = createJsxElementResolver(context);
1754
- return {
1755
- JSXElement(node) {
1756
- const { attributes, domElementType } = resolver.resolve(node);
1757
- if (domElementType !== "iframe") return;
1758
- const customComponentProp = findCustomComponentProp("sandbox", attributes);
1759
- const propNameOnJsx = customComponentProp?.name ?? "sandbox";
1760
- const attributeNode = ER.getAttribute(
1761
- context,
1762
- propNameOnJsx,
1763
- node.openingElement.attributes,
1764
- context.sourceCode.getScope(node)
1765
- );
1766
- if (attributeNode != null) {
1767
- const attributeValue = ER.getAttributeValue(
1768
- context,
1769
- attributeNode,
1770
- propNameOnJsx
1771
- );
1772
- if (attributeValue.kind === "some" && !hasSafeSandbox(attributeValue.value)) {
1773
- context.report({
1774
- messageId: "noUnsafeIframeSandbox",
1775
- node: attributeNode
1776
- });
1777
- return;
1778
- }
1779
- }
1780
- if (customComponentProp?.defaultValue == null) return;
1781
- if (!hasSafeSandbox(customComponentProp.defaultValue)) {
1782
- context.report({
1783
- messageId: "noUnsafeIframeSandbox",
1784
- node
1785
- });
1786
- }
1787
- }
1788
- };
1822
+ function create$3(context) {
1823
+ const resolver = createJsxElementResolver(context);
1824
+ return { JSXElement(node) {
1825
+ const { domElementType } = resolver.resolve(node);
1826
+ if (domElementType !== "iframe") return;
1827
+ const sandboxAttribute = ER.getAttribute(context, node.openingElement.attributes, context.sourceCode.getScope(node))("sandbox");
1828
+ if (sandboxAttribute == null) return;
1829
+ const sandboxValue = ER.resolveAttributeValue(context, sandboxAttribute);
1830
+ const sandboxValueStatic = sandboxValue.toStatic("sandbox");
1831
+ if (!isSafeSandbox(sandboxValueStatic)) context.report({
1832
+ messageId: "noUnsafeIframeSandbox",
1833
+ node: sandboxValue.node ?? sandboxAttribute
1834
+ });
1835
+ } };
1789
1836
  }
1790
- var RULE_NAME14 = "no-unsafe-target-blank";
1791
- var RULE_FEATURES13 = [];
1837
+
1838
+ //#endregion
1839
+ //#region src/rules/no-unsafe-target-blank.ts
1840
+ const RULE_NAME$2 = "no-unsafe-target-blank";
1841
+ const RULE_FEATURES$2 = ["FIX"];
1842
+ /**
1843
+ * Checks if a value appears to be an external link.
1844
+ * External links typically start with http(s):// or have protocol-relative format.
1845
+ * @param value - The value to check
1846
+ * @returns Whether the value represents an external link
1847
+ */
1792
1848
  function isExternalLinkLike(value) {
1793
- if (value == null) return false;
1794
- return value.startsWith("https://") || /^(?:\w+:|\/\/)/u.test(value);
1849
+ if (typeof value !== "string") return false;
1850
+ return value.startsWith("https://") || /^(?:\w+:|\/\/)/u.test(value);
1795
1851
  }
1852
+ /**
1853
+ * Checks if a rel attribute value contains the necessary security attributes.
1854
+ * At minimum, it should contain "noreferrer".
1855
+ * @param value - The rel attribute value to check
1856
+ * @returns Whether the rel value is considered secure
1857
+ */
1796
1858
  function isSafeRel(value) {
1797
- if (value == null) return false;
1798
- return value === "noreferrer" || /\bnoreferrer\b/u.test(value);
1859
+ if (typeof value !== "string") return false;
1860
+ return value === "noreferrer" || /\bnoreferrer\b/u.test(value);
1799
1861
  }
1800
1862
  var no_unsafe_target_blank_default = createRule({
1801
- meta: {
1802
- type: "problem",
1803
- docs: {
1804
- description: 'Disallow `target="_blank"` without `rel="noreferrer noopener"`.',
1805
- [Symbol.for("rule_features")]: RULE_FEATURES13
1806
- },
1807
- messages: {
1808
- noUnsafeTargetBlank: `Using 'target="_blank"' on an external link without 'rel="noreferrer noopener"' is a security risk.`
1809
- },
1810
- schema: []
1811
- },
1812
- name: RULE_NAME14,
1813
- create: create14,
1814
- defaultOptions: []
1863
+ meta: {
1864
+ type: "problem",
1865
+ docs: {
1866
+ description: "Disallow `target=\"_blank\"` without `rel=\"noreferrer noopener\"`.",
1867
+ [Symbol.for("rule_features")]: RULE_FEATURES$2
1868
+ },
1869
+ fixable: "code",
1870
+ hasSuggestions: true,
1871
+ messages: {
1872
+ addRelNoreferrerNoopener: `Add 'rel="noreferrer noopener"' to the link to prevent security risks.`,
1873
+ noUnsafeTargetBlank: `Using 'target="_blank"' on an external link without 'rel="noreferrer noopener"' is a security risk.`
1874
+ },
1875
+ schema: []
1876
+ },
1877
+ name: RULE_NAME$2,
1878
+ create: create$2,
1879
+ defaultOptions: []
1815
1880
  });
1816
- function create14(context) {
1817
- const resolver = createJsxElementResolver(context);
1818
- return {
1819
- JSXElement(node) {
1820
- const { attributes, domElementType } = resolver.resolve(node);
1821
- if (domElementType !== "a") return;
1822
- const elementScope = context.sourceCode.getScope(node);
1823
- const getAttributeStringValue = (name3) => {
1824
- const customComponentProp = findCustomComponentProp(name3, attributes);
1825
- const propNameOnJsx = customComponentProp?.name ?? name3;
1826
- const attributeNode = ER.getAttribute(
1827
- context,
1828
- propNameOnJsx,
1829
- node.openingElement.attributes,
1830
- elementScope
1831
- );
1832
- if (attributeNode == null) return customComponentProp?.defaultValue;
1833
- const attributeValue = ER.getAttributeValue(context, attributeNode, propNameOnJsx);
1834
- if (attributeValue.kind === "some" && typeof attributeValue.value === "string") {
1835
- return attributeValue.value;
1836
- }
1837
- return _;
1838
- };
1839
- if (getAttributeStringValue("target") !== "_blank") {
1840
- return;
1841
- }
1842
- if (!isExternalLinkLike(getAttributeStringValue("href"))) {
1843
- return;
1844
- }
1845
- if (isSafeRel(getAttributeStringValue("rel"))) {
1846
- return;
1847
- }
1848
- context.report({
1849
- messageId: "noUnsafeTargetBlank",
1850
- node
1851
- });
1852
- }
1853
- };
1881
+ function create$2(context) {
1882
+ const resolver = createJsxElementResolver(context);
1883
+ return { JSXElement(node) {
1884
+ const { domElementType } = resolver.resolve(node);
1885
+ if (domElementType !== "a") return;
1886
+ const getAttributes = ER.getAttribute(context, node.openingElement.attributes, context.sourceCode.getScope(node));
1887
+ const targetAttribute = getAttributes("target");
1888
+ if (targetAttribute == null) return;
1889
+ if (ER.resolveAttributeValue(context, targetAttribute).toStatic("target") !== "_blank") return;
1890
+ const hrefAttribute = getAttributes("href");
1891
+ if (hrefAttribute == null) return;
1892
+ const hrefAttributeValue = ER.resolveAttributeValue(context, hrefAttribute).toStatic("href");
1893
+ if (!isExternalLinkLike(hrefAttributeValue)) return;
1894
+ const relAttribute = getAttributes("rel");
1895
+ if (relAttribute == null) {
1896
+ context.report({
1897
+ messageId: "noUnsafeTargetBlank",
1898
+ node: node.openingElement,
1899
+ suggest: [{
1900
+ messageId: "addRelNoreferrerNoopener",
1901
+ fix(fixer) {
1902
+ return fixer.insertTextAfter(node.openingElement.name, ` rel="noreferrer noopener"`);
1903
+ }
1904
+ }]
1905
+ });
1906
+ return;
1907
+ }
1908
+ const relAttributeValue = ER.resolveAttributeValue(context, relAttribute).toStatic("rel");
1909
+ if (isSafeRel(relAttributeValue)) return;
1910
+ context.report({
1911
+ messageId: "noUnsafeTargetBlank",
1912
+ node: relAttribute,
1913
+ suggest: [{
1914
+ messageId: "addRelNoreferrerNoopener",
1915
+ fix(fixer) {
1916
+ return fixer.replaceText(relAttribute, `rel="noreferrer noopener"`);
1917
+ }
1918
+ }]
1919
+ });
1920
+ } };
1854
1921
  }
1855
- var RULE_NAME15 = "no-use-form-state";
1856
- var RULE_FEATURES14 = [
1857
- "MOD"
1858
- ];
1922
+
1923
+ //#endregion
1924
+ //#region src/rules/no-use-form-state.ts
1925
+ const RULE_NAME$1 = "no-use-form-state";
1926
+ const RULE_FEATURES$1 = ["MOD"];
1859
1927
  var no_use_form_state_default = createRule({
1860
- meta: {
1861
- type: "problem",
1862
- docs: {
1863
- description: "Replaces usages of `useFormState` with `useActionState`.",
1864
- [Symbol.for("rule_features")]: RULE_FEATURES14
1865
- },
1866
- fixable: "code",
1867
- messages: {
1868
- noUseFormState: "[Deprecated] Use 'useActionState' from 'react' package instead."
1869
- },
1870
- schema: []
1871
- },
1872
- name: RULE_NAME15,
1873
- create: create15,
1874
- defaultOptions: []
1928
+ meta: {
1929
+ type: "problem",
1930
+ docs: {
1931
+ description: "Replaces usages of `useFormState` with `useActionState`.",
1932
+ [Symbol.for("rule_features")]: RULE_FEATURES$1
1933
+ },
1934
+ fixable: "code",
1935
+ messages: { noUseFormState: "[Deprecated] Use 'useActionState' from 'react' package instead." },
1936
+ schema: []
1937
+ },
1938
+ name: RULE_NAME$1,
1939
+ create: create$1,
1940
+ defaultOptions: []
1875
1941
  });
1876
- function create15(context) {
1877
- if (!context.sourceCode.text.includes("useFormState")) return {};
1878
- const settings2 = getSettingsFromContext(context);
1879
- if (compare(settings2.version, "19.0.0", "<")) return {};
1880
- const reactDomNames = /* @__PURE__ */ new Set();
1881
- const useFormStateNames = /* @__PURE__ */ new Set();
1882
- return {
1883
- CallExpression(node) {
1884
- switch (true) {
1885
- case (node.callee.type === AST_NODE_TYPES.Identifier && useFormStateNames.has(node.callee.name)):
1886
- context.report({
1887
- messageId: "noUseFormState",
1888
- node,
1889
- fix: getFix3(context, node)
1890
- });
1891
- return;
1892
- case (node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === "useFormState" && reactDomNames.has(node.callee.object.name)):
1893
- context.report({
1894
- messageId: "noUseFormState",
1895
- node,
1896
- fix: getFix3(context, node)
1897
- });
1898
- return;
1899
- }
1900
- },
1901
- ImportDeclaration(node) {
1902
- const [baseSource] = node.source.value.split("/");
1903
- if (baseSource !== "react-dom") return;
1904
- for (const specifier of node.specifiers) {
1905
- switch (specifier.type) {
1906
- case AST_NODE_TYPES.ImportSpecifier:
1907
- if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
1908
- if (specifier.imported.name === "useFormState") {
1909
- useFormStateNames.add(specifier.local.name);
1910
- }
1911
- continue;
1912
- case AST_NODE_TYPES.ImportDefaultSpecifier:
1913
- case AST_NODE_TYPES.ImportNamespaceSpecifier:
1914
- reactDomNames.add(specifier.local.name);
1915
- continue;
1916
- }
1917
- }
1918
- }
1919
- };
1942
+ function create$1(context) {
1943
+ if (!context.sourceCode.text.includes("useFormState")) return {};
1944
+ const settings$1 = getSettingsFromContext(context);
1945
+ if (compare(settings$1.version, "19.0.0", "<")) return {};
1946
+ const reactDomNames = /* @__PURE__ */ new Set();
1947
+ const useFormStateNames = /* @__PURE__ */ new Set();
1948
+ return {
1949
+ CallExpression(node) {
1950
+ switch (true) {
1951
+ case node.callee.type === AST_NODE_TYPES.Identifier && useFormStateNames.has(node.callee.name):
1952
+ context.report({
1953
+ messageId: "noUseFormState",
1954
+ node,
1955
+ fix: getFix(context, node)
1956
+ });
1957
+ return;
1958
+ case node.callee.type === AST_NODE_TYPES.MemberExpression && node.callee.object.type === AST_NODE_TYPES.Identifier && node.callee.property.type === AST_NODE_TYPES.Identifier && node.callee.property.name === "useFormState" && reactDomNames.has(node.callee.object.name):
1959
+ context.report({
1960
+ messageId: "noUseFormState",
1961
+ node,
1962
+ fix: getFix(context, node)
1963
+ });
1964
+ return;
1965
+ }
1966
+ },
1967
+ ImportDeclaration(node) {
1968
+ const [baseSource] = node.source.value.split("/");
1969
+ if (baseSource !== "react-dom") return;
1970
+ for (const specifier of node.specifiers) switch (specifier.type) {
1971
+ case AST_NODE_TYPES.ImportSpecifier:
1972
+ if (specifier.imported.type !== AST_NODE_TYPES.Identifier) continue;
1973
+ if (specifier.imported.name === "useFormState") useFormStateNames.add(specifier.local.name);
1974
+ continue;
1975
+ case AST_NODE_TYPES.ImportDefaultSpecifier:
1976
+ case AST_NODE_TYPES.ImportNamespaceSpecifier:
1977
+ reactDomNames.add(specifier.local.name);
1978
+ continue;
1979
+ }
1980
+ }
1981
+ };
1920
1982
  }
1921
- function getFix3(context, node) {
1922
- const { importSource } = getSettingsFromContext(context);
1923
- return (fixer) => {
1924
- return [
1925
- fixer.insertTextBefore(context.sourceCode.ast, `import { useActionState } from "${importSource}";
1926
- `),
1927
- fixer.replaceText(node.callee, "useActionState")
1928
- ];
1929
- };
1983
+ function getFix(context, node) {
1984
+ const { importSource } = getSettingsFromContext(context);
1985
+ return (fixer) => {
1986
+ return [fixer.insertTextBefore(context.sourceCode.ast, `import { useActionState } from "${importSource}";\n`), fixer.replaceText(node.callee, "useActionState")];
1987
+ };
1930
1988
  }
1931
- var RULE_NAME16 = "no-void-elements-with-children";
1932
- var RULE_FEATURES15 = [];
1933
- var voidElements = /* @__PURE__ */ new Set([
1934
- "area",
1935
- "base",
1936
- "br",
1937
- "col",
1938
- "embed",
1939
- "hr",
1940
- "img",
1941
- "input",
1942
- "keygen",
1943
- "link",
1944
- "menuitem",
1945
- "meta",
1946
- "param",
1947
- "source",
1948
- "track",
1949
- "wbr"
1989
+
1990
+ //#endregion
1991
+ //#region src/rules/no-void-elements-with-children.ts
1992
+ const RULE_NAME = "no-void-elements-with-children";
1993
+ const RULE_FEATURES = [];
1994
+ const voidElements = new Set([
1995
+ "area",
1996
+ "base",
1997
+ "br",
1998
+ "col",
1999
+ "embed",
2000
+ "hr",
2001
+ "img",
2002
+ "input",
2003
+ "keygen",
2004
+ "link",
2005
+ "menuitem",
2006
+ "meta",
2007
+ "param",
2008
+ "source",
2009
+ "track",
2010
+ "wbr"
1950
2011
  ]);
1951
2012
  var no_void_elements_with_children_default = createRule({
1952
- meta: {
1953
- type: "problem",
1954
- docs: {
1955
- description: "Disallow `children` in void DOM elements.",
1956
- [Symbol.for("rule_features")]: RULE_FEATURES15
1957
- },
1958
- messages: {
1959
- noVoidElementsWithChildren: "'{{element}}' is a void element tag and must not have children."
1960
- },
1961
- schema: []
1962
- },
1963
- name: RULE_NAME16,
1964
- create: create16,
1965
- defaultOptions: []
2013
+ meta: {
2014
+ type: "problem",
2015
+ docs: {
2016
+ description: "Disallow `children` in void DOM elements.",
2017
+ [Symbol.for("rule_features")]: RULE_FEATURES
2018
+ },
2019
+ messages: { noVoidElementsWithChildren: "'{{element}}' is a void element tag and must not have children." },
2020
+ schema: []
2021
+ },
2022
+ name: RULE_NAME,
2023
+ create,
2024
+ defaultOptions: []
1966
2025
  });
1967
- function create16(context) {
1968
- return {
1969
- JSXElement(node) {
1970
- const elementName = ER.getElementType(context, node);
1971
- if (elementName.length === 0 || !voidElements.has(elementName)) {
1972
- return;
1973
- }
1974
- if (node.children.length > 0) {
1975
- context.report({
1976
- messageId: "noVoidElementsWithChildren",
1977
- node,
1978
- data: {
1979
- element: elementName
1980
- }
1981
- });
1982
- }
1983
- const { attributes } = node.openingElement;
1984
- const initialScope = context.sourceCode.getScope(node);
1985
- const hasAttribute3 = (name3) => ER.hasAttribute(context, name3, attributes, initialScope);
1986
- if (hasAttribute3("children") || hasAttribute3("dangerouslySetInnerHTML")) {
1987
- context.report({
1988
- messageId: "noVoidElementsWithChildren",
1989
- node,
1990
- data: {
1991
- element: elementName
1992
- }
1993
- });
1994
- }
1995
- }
1996
- };
2026
+ function create(context) {
2027
+ const resolver = createJsxElementResolver(context);
2028
+ return { JSXElement(node) {
2029
+ const { domElementType: elementName } = resolver.resolve(node);
2030
+ if (elementName.length === 0 || !voidElements.has(elementName)) return;
2031
+ if (node.children.length > 0) context.report({
2032
+ messageId: "noVoidElementsWithChildren",
2033
+ node,
2034
+ data: { element: elementName }
2035
+ });
2036
+ const { attributes } = node.openingElement;
2037
+ const initialScope = context.sourceCode.getScope(node);
2038
+ const hasAttribute = (name$2) => ER.hasAttribute(context, name$2, attributes, initialScope);
2039
+ if (hasAttribute("children") || hasAttribute("dangerouslySetInnerHTML")) context.report({
2040
+ messageId: "noVoidElementsWithChildren",
2041
+ node,
2042
+ data: { element: elementName }
2043
+ });
2044
+ } };
1997
2045
  }
1998
2046
 
1999
- // src/plugin.ts
2000
- var plugin = {
2001
- meta: {
2002
- name: name2,
2003
- version
2004
- },
2005
- rules: {
2006
- "no-dangerously-set-innerhtml": no_dangerously_set_innerhtml_default,
2007
- "no-dangerously-set-innerhtml-with-children": no_dangerously_set_innerhtml_with_children_default,
2008
- "no-find-dom-node": no_find_dom_node_default,
2009
- "no-flush-sync": no_flush_sync_default,
2010
- "no-hydrate": no_hydrate_default,
2011
- "no-missing-button-type": no_missing_button_type_default,
2012
- "no-missing-iframe-sandbox": no_missing_iframe_sandbox_default,
2013
- "no-namespace": no_namespace_default,
2014
- "no-render": no_render_default,
2015
- "no-render-return-value": no_render_return_value_default,
2016
- "no-script-url": no_script_url_default,
2017
- "no-unknown-property": no_unknown_property_default,
2018
- "no-unsafe-iframe-sandbox": no_unsafe_iframe_sandbox_default,
2019
- "no-unsafe-target-blank": no_unsafe_target_blank_default,
2020
- "no-use-form-state": no_use_form_state_default,
2021
- "no-void-elements-with-children": no_void_elements_with_children_default
2022
- }
2047
+ //#endregion
2048
+ //#region src/plugin.ts
2049
+ const plugin = {
2050
+ meta: {
2051
+ name,
2052
+ version
2053
+ },
2054
+ rules: {
2055
+ "no-dangerously-set-innerhtml": no_dangerously_set_innerhtml_default,
2056
+ "no-dangerously-set-innerhtml-with-children": no_dangerously_set_innerhtml_with_children_default,
2057
+ "no-find-dom-node": no_find_dom_node_default,
2058
+ "no-flush-sync": no_flush_sync_default,
2059
+ "no-hydrate": no_hydrate_default,
2060
+ "no-missing-button-type": no_missing_button_type_default,
2061
+ "no-missing-iframe-sandbox": no_missing_iframe_sandbox_default,
2062
+ "no-namespace": no_namespace_default,
2063
+ "no-render": no_render_default,
2064
+ "no-render-return-value": no_render_return_value_default,
2065
+ "no-script-url": no_script_url_default,
2066
+ "no-string-style-prop": no_string_style_prop_default,
2067
+ "no-unknown-property": no_unknown_property_default,
2068
+ "no-unsafe-iframe-sandbox": no_unsafe_iframe_sandbox_default,
2069
+ "no-unsafe-target-blank": no_unsafe_target_blank_default,
2070
+ "no-use-form-state": no_use_form_state_default,
2071
+ "no-void-elements-with-children": no_void_elements_with_children_default
2072
+ }
2023
2073
  };
2024
2074
 
2025
- // src/index.ts
2026
- function makeConfig(config) {
2027
- return {
2028
- ...config,
2029
- plugins: {
2030
- "react-dom": plugin
2031
- }
2032
- };
2033
- }
2034
- function makeLegacyConfig({ rules: rules2 }) {
2035
- return {
2036
- plugins: ["react-dom"],
2037
- rules: rules2
2038
- };
2039
- }
2040
- var index_default = {
2041
- ...plugin,
2042
- configs: {
2043
- ["recommended"]: makeConfig(recommended_exports),
2044
- ["recommended-legacy"]: makeLegacyConfig(recommended_exports)
2045
- }
2075
+ //#endregion
2076
+ //#region src/index.ts
2077
+ const { toFlatConfig } = getConfigAdapters("react-dom", plugin);
2078
+ var src_default = {
2079
+ ...plugin,
2080
+ configs: { ["recommended"]: toFlatConfig(recommended_exports) }
2046
2081
  };
2047
2082
 
2048
- export { index_default as default };
2083
+ //#endregion
2084
+ export { src_default as default };