@eslint-react/jsx 1.5.31-beta.0 → 1.5.31-beta.1
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.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -110,7 +110,7 @@ declare const DEFAULT_JSX_VALUE_HINT: bigint;
|
|
|
110
110
|
* @param hint The `JSXValueHint` to use
|
|
111
111
|
* @returns boolean
|
|
112
112
|
*/
|
|
113
|
-
declare function isJSXValue(node: TSESTree$1.Node |
|
|
113
|
+
declare function isJSXValue(node: null | TSESTree$1.Node | undefined, context: RuleContext, hint?: bigint): boolean;
|
|
114
114
|
|
|
115
115
|
/**
|
|
116
116
|
* Check if a node is a Literal or JSXText
|
package/dist/index.d.ts
CHANGED
|
@@ -110,7 +110,7 @@ declare const DEFAULT_JSX_VALUE_HINT: bigint;
|
|
|
110
110
|
* @param hint The `JSXValueHint` to use
|
|
111
111
|
* @returns boolean
|
|
112
112
|
*/
|
|
113
|
-
declare function isJSXValue(node: TSESTree$1.Node |
|
|
113
|
+
declare function isJSXValue(node: null | TSESTree$1.Node | undefined, context: RuleContext, hint?: bigint): boolean;
|
|
114
114
|
|
|
115
115
|
/**
|
|
116
116
|
* Check if a node is a Literal or JSXText
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/jsx",
|
|
3
|
-
"version": "1.5.31-beta.
|
|
3
|
+
"version": "1.5.31-beta.1",
|
|
4
4
|
"description": "ESLint React's TSESTree AST utility module for static analysis of JSX.",
|
|
5
5
|
"homepage": "https://github.com/rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"@typescript-eslint/scope-manager": "^7.17.0",
|
|
39
39
|
"@typescript-eslint/types": "^7.17.0",
|
|
40
40
|
"@typescript-eslint/utils": "^7.17.0",
|
|
41
|
-
"@eslint-react/
|
|
42
|
-
"@eslint-react/
|
|
43
|
-
"@eslint-react/var": "1.5.31-beta.
|
|
44
|
-
"@eslint-react/types": "1.5.31-beta.
|
|
41
|
+
"@eslint-react/ast": "1.5.31-beta.1",
|
|
42
|
+
"@eslint-react/tools": "1.5.31-beta.1",
|
|
43
|
+
"@eslint-react/var": "1.5.31-beta.1",
|
|
44
|
+
"@eslint-react/types": "1.5.31-beta.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"ts-pattern": "5.2.0",
|