@arcgis/eslint-config 4.33.0-next.52 → 4.33.0-next.54
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/{chunk-56RNDOF6.js → chunk-DIVZDNYV.js} +1 -1
- package/dist/{chunk-Y32JLKYV.js → chunk-G2LMAMDL.js} +1 -1
- package/dist/{chunk-M4MRNJ2P.js → chunk-V3PJNBG5.js} +3 -5
- package/dist/config/index.js +2 -2
- package/dist/config/lumina.js +2 -2
- package/dist/plugins/lumina/index.js +2 -2
- package/dist/plugins/webgis/index.js +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
makeEslintPlugin
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-DIVZDNYV.js";
|
|
4
4
|
|
|
5
5
|
// src/plugins/utils/helpers.ts
|
|
6
6
|
var isTestFile = (filePath) => filePath.includes("/test") || filePath.includes(".test") || filePath.includes(".spec") || filePath.includes("e2e") || filePath.includes("__") || filePath.includes("/.");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
makeEslintPlugin
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-DIVZDNYV.js";
|
|
4
4
|
|
|
5
5
|
// src/plugins/lumina/rules/add-missing-jsx-import.ts
|
|
6
6
|
import { AST_NODE_TYPES as AST_NODE_TYPES2 } from "@typescript-eslint/utils";
|
|
@@ -678,10 +678,8 @@ var regionMatchers = entries({
|
|
|
678
678
|
"State Properties": (node) => "decorators" in node && hasDecorator(node, "state"),
|
|
679
679
|
"Events": isEvent,
|
|
680
680
|
"Rendering": (_node, name) => name.startsWith("render") || name.startsWith("_render"),
|
|
681
|
-
"Private Properties": (node) =>
|
|
682
|
-
|
|
683
|
-
node.type === AST_NODE_TYPES5.PropertyDefinition || node.type === AST_NODE_TYPES5.AccessorProperty
|
|
684
|
-
),
|
|
681
|
+
"Private Properties": (node) => node.type === AST_NODE_TYPES5.PropertyDefinition || // We don't yet support public accessor properties
|
|
682
|
+
node.type === AST_NODE_TYPES5.AccessorProperty || node.type === AST_NODE_TYPES5.MethodDefinition && (node.kind === "get" || node.kind === "set"),
|
|
685
683
|
"Private Methods": () => true
|
|
686
684
|
});
|
|
687
685
|
var definitelyComponentRegions = /* @__PURE__ */ new Set([
|
package/dist/config/index.js
CHANGED
package/dist/config/lumina.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/eslint-config",
|
|
3
|
-
"version": "4.33.0-next.
|
|
3
|
+
"version": "4.33.0-next.54",
|
|
4
4
|
"description": "ESLint configuration for arcgis-web-components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@arcgis/components-utils": "4.33.0-next.
|
|
22
|
+
"@arcgis/components-utils": "4.33.0-next.54",
|
|
23
23
|
"@eslint/js": "^9.17.0",
|
|
24
24
|
"@types/confusing-browser-globals": "^1.0.3",
|
|
25
25
|
"confusing-browser-globals": "^1.0.11",
|