@agilebot/eslint-config 0.8.1 → 0.8.2

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/cli.d.mts CHANGED
@@ -1,2 +1 @@
1
-
2
- export { }
1
+ export { };
package/dist/cli.d.ts CHANGED
@@ -1,2 +1 @@
1
-
2
- export { }
1
+ export { };
package/dist/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @agilebot/eslint-config v0.8.1
2
+ * @license @agilebot/eslint-config v0.8.2
3
3
  *
4
4
  * Copyright (c) Agilebot, Inc. and its affiliates.
5
5
  *
@@ -7,139 +7,81 @@
7
7
  * LICENSE file in the root directory of this source tree.
8
8
  */
9
9
 
10
- "use strict";
11
- var __create = Object.create;
12
- var __defProp = Object.defineProperty;
13
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
14
- var __getOwnPropNames = Object.getOwnPropertyNames;
15
- var __getProtoOf = Object.getPrototypeOf;
16
- var __hasOwnProp = Object.prototype.hasOwnProperty;
17
- var __copyProps = (to, from, except, desc) => {
18
- if (from && typeof from === "object" || typeof from === "function") {
19
- for (let key of __getOwnPropNames(from))
20
- if (!__hasOwnProp.call(to, key) && key !== except)
21
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
22
- }
23
- return to;
24
- };
25
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
26
- // If the importer is in node compatibility mode or this is not an ESM
27
- // file that has been converted to a CommonJS file using a Babel-
28
- // compatible transform (i.e. "__esModule" has not been set), then set
29
- // "default" to the CommonJS "module.exports" for node compatibility.
30
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
31
- mod
32
- ));
10
+ const require_constants = require('./constants-uP0zspUv.js');
11
+ const yargs = require_constants.__toESM(require("yargs"));
12
+ const yargs_helpers = require_constants.__toESM(require("yargs/helpers"));
13
+ const ansis = require_constants.__toESM(require("ansis"));
14
+ const __agilebot_eslint_utils = require_constants.__toESM(require("@agilebot/eslint-utils"));
15
+ const node_path = require_constants.__toESM(require("node:path"));
33
16
 
34
- // src/cli/index.ts
35
- var import_yargs = __toESM(require("yargs"));
36
- var import_helpers = require("yargs/helpers");
37
- var import_ansis = __toESM(require("ansis"));
38
- var import_eslint_utils = require("@agilebot/eslint-utils");
39
-
40
- // src/constants.ts
41
- var JS_EXTS = [".js", ".jsx", ".cjs", ".cjsx", ".mjs", ".mjsx"];
42
- var TS_EXTS = [".ts", ".tsx", ".cts", ".ctsx", ".mts", ".mtsx"];
43
- var DTS_EXTS = [".d.ts", ".d.cts", ".d.mts"];
44
- var VUE_EXTS = [".vue"];
45
- var DEFAULT_EXTS = [...JS_EXTS, ...TS_EXTS, ...VUE_EXTS];
46
- var JS_GLOBS = JS_EXTS.map((ext) => `**/*${ext}`);
47
- var TS_GLOBS = TS_EXTS.map((ext) => `**/*${ext}`);
48
- var DTS_GLOBS = DTS_EXTS.map((ext) => `**/*${ext}`);
49
- var VUE_GLOBS = VUE_EXTS.map((ext) => `**/*${ext}`);
50
- var DEFAULT_GLOBS = DEFAULT_EXTS.map((ext) => `**/*${ext}`);
51
- var CLI_NAME = "eslint-agilebot";
52
-
53
- // src/cli/stages/eslint.ts
54
- var import_node_path = __toESM(require("path"));
17
+ //#region src/cli/stages/eslint.ts
55
18
  function patch() {
56
- if (console?.error) {
57
- const origConsoleError = console.error;
58
- console.error = (...args) => {
59
- if (args?.[0]?.includes("React version not specified")) {
60
- return;
61
- }
62
- origConsoleError(...args);
63
- };
64
- }
19
+ if (console?.error) {
20
+ const origConsoleError = console.error;
21
+ console.error = (...args) => {
22
+ if (args?.[0]?.includes("React version not specified")) return;
23
+ origConsoleError(...args);
24
+ };
25
+ }
65
26
  }
66
27
  function runBinary() {
67
- const pkg = require.resolve("eslint/package.json");
68
- const bin = import_node_path.default.join(pkg, "..", "bin", "eslint.js");
69
- require(bin);
28
+ const pkg = require.resolve("eslint/package.json");
29
+ const bin = node_path.default.join(pkg, "..", "bin", "eslint.js");
30
+ require(bin);
70
31
  }
71
32
 
72
- // src/cli/index.ts
33
+ //#endregion
34
+ //#region src/cli/index.ts
73
35
  function cli() {
74
- patch();
75
- const argv = (0, import_yargs.default)((0, import_helpers.hideBin)(process.argv)).scriptName(CLI_NAME).usage(`${CLI_NAME} [options] file.js [file.js] [dir]`).options({
76
- config: {
77
- alias: "c",
78
- type: "string",
79
- description: "Use this configuration instead of eslint.config.js, eslint.config.mjs, or eslint.config.cjs"
80
- },
81
- fix: {
82
- type: "boolean",
83
- description: "Automatically fix problems",
84
- default: true
85
- },
86
- "check-intl": {
87
- type: "boolean",
88
- description: "Check for unused intl IDs",
89
- default: false
90
- },
91
- progress: {
92
- type: "boolean",
93
- description: "Show progress bar",
94
- default: false
95
- },
96
- "show-warnings-in-ci": {
97
- type: "boolean",
98
- description: "Show warnings in CI environment",
99
- default: false
100
- }
101
- }).alias("h", "help").alias("v", "version").parseSync();
102
- process.argv = process.argv.slice(0, 2);
103
- if (argv._.length === 0) {
104
- console.error(
105
- import_ansis.default.red(
106
- "Error: 'patterns' must be a non-empty string or an array of non-empty strings"
107
- )
108
- );
109
- process.exit(1);
110
- }
111
- argv._.forEach((pattern) => {
112
- process.argv.push(String(pattern));
113
- });
114
- if (argv.fix) {
115
- process.argv.splice(2, 0, "--fix");
116
- }
117
- if (argv.config) {
118
- process.argv.splice(2, 0, "--config", argv.config);
119
- }
120
- if (argv.progress && !(0, import_eslint_utils.isCI)()) {
121
- process.argv.splice(
122
- 2,
123
- 0,
124
- "--plugin",
125
- "file-progress",
126
- "--rule",
127
- "file-progress/activate: 1"
128
- );
129
- }
130
- if (!argv.showWarningsInCi && (0, import_eslint_utils.isCI)()) {
131
- console.warn(
132
- import_ansis.default.yellow(
133
- `Warning: ${CLI_NAME} will report errors only in CI environment`
134
- )
135
- );
136
- process.argv.splice(2, 0, "--quiet");
137
- }
138
- if (argv.checkIntl) {
139
- process.argv.splice(2, 0, "--rule", "@agilebot/intl-id-unused: 1");
140
- }
141
- runBinary();
36
+ patch();
37
+ const argv = (0, yargs.default)((0, yargs_helpers.hideBin)(process.argv)).scriptName(require_constants.CLI_NAME).usage(`${require_constants.CLI_NAME} [options] file.js [file.js] [dir]`).options({
38
+ config: {
39
+ alias: "c",
40
+ type: "string",
41
+ description: "Use this configuration instead of eslint.config.js, eslint.config.mjs, or eslint.config.cjs"
42
+ },
43
+ fix: {
44
+ type: "boolean",
45
+ description: "Automatically fix problems",
46
+ default: true
47
+ },
48
+ "check-intl": {
49
+ type: "boolean",
50
+ description: "Check for unused intl IDs",
51
+ default: false
52
+ },
53
+ progress: {
54
+ type: "boolean",
55
+ description: "Show progress bar",
56
+ default: false
57
+ },
58
+ "show-warnings-in-ci": {
59
+ type: "boolean",
60
+ description: "Show warnings in CI environment",
61
+ default: false
62
+ }
63
+ }).alias("h", "help").alias("v", "version").parseSync();
64
+ process.argv = process.argv.slice(0, 2);
65
+ if (argv._.length === 0) {
66
+ console.error(ansis.default.red("Error: 'patterns' must be a non-empty string or an array of non-empty strings"));
67
+ process.exit(1);
68
+ }
69
+ argv._.forEach((pattern) => {
70
+ process.argv.push(String(pattern));
71
+ });
72
+ if (argv.fix) process.argv.splice(2, 0, "--fix");
73
+ if (argv.config) process.argv.splice(2, 0, "--config", argv.config);
74
+ if (argv.progress && !(0, __agilebot_eslint_utils.isCI)()) process.argv.splice(2, 0, "--plugin", "file-progress", "--rule", "file-progress/activate: 1");
75
+ if (!argv.showWarningsInCi && (0, __agilebot_eslint_utils.isCI)()) {
76
+ console.warn(ansis.default.yellow(`Warning: ${require_constants.CLI_NAME} will report errors only in CI environment`));
77
+ process.argv.splice(2, 0, "--quiet");
78
+ }
79
+ if (argv.checkIntl) process.argv.splice(2, 0, "--rule", "@agilebot/intl-id-unused: 1");
80
+ runBinary();
142
81
  }
143
82
 
144
- // src/cli.ts
83
+ //#endregion
84
+ //#region src/cli.ts
145
85
  cli();
86
+
87
+ //#endregion
package/dist/cli.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @agilebot/eslint-config v0.8.1
2
+ * @license @agilebot/eslint-config v0.8.2
3
3
  *
4
4
  * Copyright (c) Agilebot, Inc. and its affiliates.
5
5
  *
@@ -7,107 +7,86 @@
7
7
  * LICENSE file in the root directory of this source tree.
8
8
  */
9
9
 
10
- import {
11
- CLI_NAME,
12
- __require
13
- } from "./chunk-S6JKNAIM.mjs";
14
-
15
- // src/cli/index.ts
10
+ import { CLI_NAME } from "./constants-zSSLGYP3.mjs";
11
+ import { createRequire } from "node:module";
16
12
  import yargs from "yargs";
17
13
  import { hideBin } from "yargs/helpers";
18
14
  import ansis from "ansis";
19
15
  import { isCI } from "@agilebot/eslint-utils";
20
-
21
- // src/cli/stages/eslint.ts
22
16
  import path from "node:path";
17
+
18
+ //#region rolldown:runtime
19
+ var __require = /* @__PURE__ */ createRequire(import.meta.url);
20
+
21
+ //#endregion
22
+ //#region src/cli/stages/eslint.ts
23
23
  function patch() {
24
- if (console?.error) {
25
- const origConsoleError = console.error;
26
- console.error = (...args) => {
27
- if (args?.[0]?.includes("React version not specified")) {
28
- return;
29
- }
30
- origConsoleError(...args);
31
- };
32
- }
24
+ if (console?.error) {
25
+ const origConsoleError = console.error;
26
+ console.error = (...args) => {
27
+ if (args?.[0]?.includes("React version not specified")) return;
28
+ origConsoleError(...args);
29
+ };
30
+ }
33
31
  }
34
32
  function runBinary() {
35
- const pkg = __require.resolve("eslint/package.json");
36
- const bin = path.join(pkg, "..", "bin", "eslint.js");
37
- __require(bin);
33
+ const pkg = __require.resolve("eslint/package.json");
34
+ const bin = path.join(pkg, "..", "bin", "eslint.js");
35
+ __require(bin);
38
36
  }
39
37
 
40
- // src/cli/index.ts
38
+ //#endregion
39
+ //#region src/cli/index.ts
41
40
  function cli() {
42
- patch();
43
- const argv = yargs(hideBin(process.argv)).scriptName(CLI_NAME).usage(`${CLI_NAME} [options] file.js [file.js] [dir]`).options({
44
- config: {
45
- alias: "c",
46
- type: "string",
47
- description: "Use this configuration instead of eslint.config.js, eslint.config.mjs, or eslint.config.cjs"
48
- },
49
- fix: {
50
- type: "boolean",
51
- description: "Automatically fix problems",
52
- default: true
53
- },
54
- "check-intl": {
55
- type: "boolean",
56
- description: "Check for unused intl IDs",
57
- default: false
58
- },
59
- progress: {
60
- type: "boolean",
61
- description: "Show progress bar",
62
- default: false
63
- },
64
- "show-warnings-in-ci": {
65
- type: "boolean",
66
- description: "Show warnings in CI environment",
67
- default: false
68
- }
69
- }).alias("h", "help").alias("v", "version").parseSync();
70
- process.argv = process.argv.slice(0, 2);
71
- if (argv._.length === 0) {
72
- console.error(
73
- ansis.red(
74
- "Error: 'patterns' must be a non-empty string or an array of non-empty strings"
75
- )
76
- );
77
- process.exit(1);
78
- }
79
- argv._.forEach((pattern) => {
80
- process.argv.push(String(pattern));
81
- });
82
- if (argv.fix) {
83
- process.argv.splice(2, 0, "--fix");
84
- }
85
- if (argv.config) {
86
- process.argv.splice(2, 0, "--config", argv.config);
87
- }
88
- if (argv.progress && !isCI()) {
89
- process.argv.splice(
90
- 2,
91
- 0,
92
- "--plugin",
93
- "file-progress",
94
- "--rule",
95
- "file-progress/activate: 1"
96
- );
97
- }
98
- if (!argv.showWarningsInCi && isCI()) {
99
- console.warn(
100
- ansis.yellow(
101
- `Warning: ${CLI_NAME} will report errors only in CI environment`
102
- )
103
- );
104
- process.argv.splice(2, 0, "--quiet");
105
- }
106
- if (argv.checkIntl) {
107
- process.argv.splice(2, 0, "--rule", "@agilebot/intl-id-unused: 1");
108
- }
109
- runBinary();
41
+ patch();
42
+ const argv = yargs(hideBin(process.argv)).scriptName(CLI_NAME).usage(`${CLI_NAME} [options] file.js [file.js] [dir]`).options({
43
+ config: {
44
+ alias: "c",
45
+ type: "string",
46
+ description: "Use this configuration instead of eslint.config.js, eslint.config.mjs, or eslint.config.cjs"
47
+ },
48
+ fix: {
49
+ type: "boolean",
50
+ description: "Automatically fix problems",
51
+ default: true
52
+ },
53
+ "check-intl": {
54
+ type: "boolean",
55
+ description: "Check for unused intl IDs",
56
+ default: false
57
+ },
58
+ progress: {
59
+ type: "boolean",
60
+ description: "Show progress bar",
61
+ default: false
62
+ },
63
+ "show-warnings-in-ci": {
64
+ type: "boolean",
65
+ description: "Show warnings in CI environment",
66
+ default: false
67
+ }
68
+ }).alias("h", "help").alias("v", "version").parseSync();
69
+ process.argv = process.argv.slice(0, 2);
70
+ if (argv._.length === 0) {
71
+ console.error(ansis.red("Error: 'patterns' must be a non-empty string or an array of non-empty strings"));
72
+ process.exit(1);
73
+ }
74
+ argv._.forEach((pattern) => {
75
+ process.argv.push(String(pattern));
76
+ });
77
+ if (argv.fix) process.argv.splice(2, 0, "--fix");
78
+ if (argv.config) process.argv.splice(2, 0, "--config", argv.config);
79
+ if (argv.progress && !isCI()) process.argv.splice(2, 0, "--plugin", "file-progress", "--rule", "file-progress/activate: 1");
80
+ if (!argv.showWarningsInCi && isCI()) {
81
+ console.warn(ansis.yellow(`Warning: ${CLI_NAME} will report errors only in CI environment`));
82
+ process.argv.splice(2, 0, "--quiet");
83
+ }
84
+ if (argv.checkIntl) process.argv.splice(2, 0, "--rule", "@agilebot/intl-id-unused: 1");
85
+ runBinary();
110
86
  }
111
87
 
112
- // src/cli.ts
88
+ //#endregion
89
+ //#region src/cli.ts
113
90
  cli();
91
+
92
+ //#endregion
@@ -0,0 +1,150 @@
1
+ /**
2
+ * @license @agilebot/eslint-config v0.8.2
3
+ *
4
+ * Copyright (c) Agilebot, Inc. and its affiliates.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+
10
+ //#region rolldown:runtime
11
+ var __create = Object.create;
12
+ var __defProp = Object.defineProperty;
13
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
14
+ var __getOwnPropNames = Object.getOwnPropertyNames;
15
+ var __getProtoOf = Object.getPrototypeOf;
16
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
17
+ var __copyProps = (to, from, except, desc) => {
18
+ if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
19
+ key = keys[i];
20
+ if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
21
+ get: ((k) => from[k]).bind(null, key),
22
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
23
+ });
24
+ }
25
+ return to;
26
+ };
27
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
28
+ value: mod,
29
+ enumerable: true
30
+ }) : target, mod));
31
+
32
+ //#endregion
33
+
34
+ //#region src/constants.ts
35
+ const JS_EXTS = [
36
+ ".js",
37
+ ".jsx",
38
+ ".cjs",
39
+ ".cjsx",
40
+ ".mjs",
41
+ ".mjsx"
42
+ ];
43
+ const TS_EXTS = [
44
+ ".ts",
45
+ ".tsx",
46
+ ".cts",
47
+ ".ctsx",
48
+ ".mts",
49
+ ".mtsx"
50
+ ];
51
+ const DTS_EXTS = [
52
+ ".d.ts",
53
+ ".d.cts",
54
+ ".d.mts"
55
+ ];
56
+ const VUE_EXTS = [".vue"];
57
+ const DEFAULT_EXTS = [
58
+ ...JS_EXTS,
59
+ ...TS_EXTS,
60
+ ...VUE_EXTS
61
+ ];
62
+ const JS_GLOBS = JS_EXTS.map((ext) => `**/*${ext}`);
63
+ const TS_GLOBS = TS_EXTS.map((ext) => `**/*${ext}`);
64
+ const DTS_GLOBS = DTS_EXTS.map((ext) => `**/*${ext}`);
65
+ const VUE_GLOBS = VUE_EXTS.map((ext) => `**/*${ext}`);
66
+ const DEFAULT_GLOBS = DEFAULT_EXTS.map((ext) => `**/*${ext}`);
67
+ const IGNORE_GLOBS = [
68
+ "**/node_modules",
69
+ "**/dist",
70
+ "**/package-lock.json",
71
+ "**/yarn.lock",
72
+ "**/pnpm-lock.yaml",
73
+ "**/bun.lockb",
74
+ "**/output",
75
+ "**/coverage",
76
+ "**/temp",
77
+ "**/.temp",
78
+ "**/tmp",
79
+ "**/.tmp",
80
+ "**/.history",
81
+ "**/.vitepress/cache",
82
+ "**/.nuxt",
83
+ "**/.next",
84
+ "**/.svelte-kit",
85
+ "**/.vercel",
86
+ "**/.changeset",
87
+ "**/.idea",
88
+ "**/.cache",
89
+ "**/.output",
90
+ "**/.vite-inspect",
91
+ "**/.yarn",
92
+ "**/vite.config.*.timestamp-*",
93
+ "**/CHANGELOG*.md",
94
+ "**/*.min.*",
95
+ "**/LICENSE*",
96
+ "**/__snapshots__",
97
+ "**/auto-import?(s).d.ts",
98
+ "**/components.d.ts"
99
+ ];
100
+ const CLI_NAME = "eslint-agilebot";
101
+
102
+ //#endregion
103
+ Object.defineProperty(exports, 'CLI_NAME', {
104
+ enumerable: true,
105
+ get: function () {
106
+ return CLI_NAME;
107
+ }
108
+ });
109
+ Object.defineProperty(exports, 'DEFAULT_GLOBS', {
110
+ enumerable: true,
111
+ get: function () {
112
+ return DEFAULT_GLOBS;
113
+ }
114
+ });
115
+ Object.defineProperty(exports, 'DTS_GLOBS', {
116
+ enumerable: true,
117
+ get: function () {
118
+ return DTS_GLOBS;
119
+ }
120
+ });
121
+ Object.defineProperty(exports, 'IGNORE_GLOBS', {
122
+ enumerable: true,
123
+ get: function () {
124
+ return IGNORE_GLOBS;
125
+ }
126
+ });
127
+ Object.defineProperty(exports, 'JS_GLOBS', {
128
+ enumerable: true,
129
+ get: function () {
130
+ return JS_GLOBS;
131
+ }
132
+ });
133
+ Object.defineProperty(exports, 'TS_GLOBS', {
134
+ enumerable: true,
135
+ get: function () {
136
+ return TS_GLOBS;
137
+ }
138
+ });
139
+ Object.defineProperty(exports, 'VUE_GLOBS', {
140
+ enumerable: true,
141
+ get: function () {
142
+ return VUE_GLOBS;
143
+ }
144
+ });
145
+ Object.defineProperty(exports, '__toESM', {
146
+ enumerable: true,
147
+ get: function () {
148
+ return __toESM;
149
+ }
150
+ });
@@ -0,0 +1,79 @@
1
+ /**
2
+ * @license @agilebot/eslint-config v0.8.2
3
+ *
4
+ * Copyright (c) Agilebot, Inc. and its affiliates.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+
10
+ //#region src/constants.ts
11
+ const JS_EXTS = [
12
+ ".js",
13
+ ".jsx",
14
+ ".cjs",
15
+ ".cjsx",
16
+ ".mjs",
17
+ ".mjsx"
18
+ ];
19
+ const TS_EXTS = [
20
+ ".ts",
21
+ ".tsx",
22
+ ".cts",
23
+ ".ctsx",
24
+ ".mts",
25
+ ".mtsx"
26
+ ];
27
+ const DTS_EXTS = [
28
+ ".d.ts",
29
+ ".d.cts",
30
+ ".d.mts"
31
+ ];
32
+ const VUE_EXTS = [".vue"];
33
+ const DEFAULT_EXTS = [
34
+ ...JS_EXTS,
35
+ ...TS_EXTS,
36
+ ...VUE_EXTS
37
+ ];
38
+ const JS_GLOBS = JS_EXTS.map((ext) => `**/*${ext}`);
39
+ const TS_GLOBS = TS_EXTS.map((ext) => `**/*${ext}`);
40
+ const DTS_GLOBS = DTS_EXTS.map((ext) => `**/*${ext}`);
41
+ const VUE_GLOBS = VUE_EXTS.map((ext) => `**/*${ext}`);
42
+ const DEFAULT_GLOBS = DEFAULT_EXTS.map((ext) => `**/*${ext}`);
43
+ const IGNORE_GLOBS = [
44
+ "**/node_modules",
45
+ "**/dist",
46
+ "**/package-lock.json",
47
+ "**/yarn.lock",
48
+ "**/pnpm-lock.yaml",
49
+ "**/bun.lockb",
50
+ "**/output",
51
+ "**/coverage",
52
+ "**/temp",
53
+ "**/.temp",
54
+ "**/tmp",
55
+ "**/.tmp",
56
+ "**/.history",
57
+ "**/.vitepress/cache",
58
+ "**/.nuxt",
59
+ "**/.next",
60
+ "**/.svelte-kit",
61
+ "**/.vercel",
62
+ "**/.changeset",
63
+ "**/.idea",
64
+ "**/.cache",
65
+ "**/.output",
66
+ "**/.vite-inspect",
67
+ "**/.yarn",
68
+ "**/vite.config.*.timestamp-*",
69
+ "**/CHANGELOG*.md",
70
+ "**/*.min.*",
71
+ "**/LICENSE*",
72
+ "**/__snapshots__",
73
+ "**/auto-import?(s).d.ts",
74
+ "**/components.d.ts"
75
+ ];
76
+ const CLI_NAME = "eslint-agilebot";
77
+
78
+ //#endregion
79
+ export { CLI_NAME, DEFAULT_GLOBS, DTS_GLOBS, IGNORE_GLOBS, JS_GLOBS, TS_GLOBS, VUE_GLOBS };