@aryaemami59/eslint-config 0.0.5 → 0.0.7

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.cjs CHANGED
@@ -1,345 +1,383 @@
1
- "use strict";
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+ //#region \0rolldown/runtime.js
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
4
5
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
6
  var __getOwnPropNames = Object.getOwnPropertyNames;
6
7
  var __getProtoOf = Object.getPrototypeOf;
7
8
  var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
9
  var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
12
+ key = keys[i];
13
+ if (!__hasOwnProp.call(to, key) && key !== except) {
14
+ __defProp(to, key, {
15
+ get: ((k) => from[k]).bind(null, key),
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
+ });
18
+ }
19
+ }
20
+ }
21
+ return to;
19
22
  };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- // If the importer is in node compatibility mode or this is not an ESM
22
- // file that has been converted to a CommonJS file using a Babel-
23
- // compatible transform (i.e. "__esModule" has not been set), then set
24
- // "default" to the CommonJS "module.exports" for node compatibility.
25
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
- mod
27
- ));
28
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
23
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
24
+ value: mod,
25
+ enumerable: true
26
+ }) : target, mod));
29
27
 
30
- // src/index.ts
31
- var src_exports = {};
32
- __export(src_exports, {
33
- config: () => import_typescript_eslint.config,
34
- configs: () => import_typescript_eslint.configs,
35
- createESLintConfig: () => createESLintConfig,
36
- disabledRules: () => disabledRules,
37
- flatESLintConfig: () => flatESLintConfig,
38
- globalIgnores: () => globalIgnores,
39
- globals: () => globals,
40
- js: () => import_js.default,
41
- parser: () => import_typescript_eslint.parser,
42
- plugin: () => import_typescript_eslint.plugin,
43
- prettierConfig: () => import_flat.default,
44
- vitestGlobals: () => vitestGlobals
45
- });
46
- module.exports = __toCommonJS(src_exports);
28
+ //#endregion
29
+ let _eslint_js = require("@eslint/js");
30
+ _eslint_js = __toESM(_eslint_js);
31
+ let eslint_config_prettier_flat = require("eslint-config-prettier/flat");
32
+ eslint_config_prettier_flat = __toESM(eslint_config_prettier_flat);
33
+ let globals = require("globals");
34
+ globals = __toESM(globals);
35
+ let eslint_config = require("eslint/config");
36
+ let typescript_eslint = require("typescript-eslint");
47
37
 
48
- // src/disabledRules.ts
49
- var disabledRules = {
50
- "no-undef": [0, { typeof: false }],
51
- "@typescript-eslint/no-unused-vars": [
52
- 0,
53
- {
54
- args: "all",
55
- argsIgnorePattern: "^_",
56
- caughtErrors: "all",
57
- caughtErrorsIgnorePattern: "^_",
58
- destructuredArrayIgnorePattern: "^_",
59
- varsIgnorePattern: "^_",
60
- ignoreRestSiblings: true
61
- }
62
- ],
63
- "@typescript-eslint/ban-ts-comment": [
64
- 0,
65
- {
66
- "ts-expect-error": "allow-with-description",
67
- "ts-ignore": true,
68
- "ts-nocheck": true,
69
- "ts-check": false,
70
- minimumDescriptionLength: 3
71
- }
72
- ]
38
+ //#region src/disabledRules.ts
39
+ /**
40
+ * An object comprised of ESLint rules to disable.
41
+ * These rules are disabled in {@linkcode flatESLintConfig}.
42
+ *
43
+ * @since 0.0.3
44
+ * @public
45
+ */
46
+ const disabledRules = {
47
+ "@typescript-eslint/ban-ts-comment": [0, {
48
+ minimumDescriptionLength: 3,
49
+ "ts-check": false,
50
+ "ts-expect-error": "allow-with-description",
51
+ "ts-ignore": true,
52
+ "ts-nocheck": true
53
+ }],
54
+ "@typescript-eslint/consistent-generic-constructors": [0],
55
+ "@typescript-eslint/no-unused-vars": [0, {
56
+ args: "after-used",
57
+ argsIgnorePattern: "^_",
58
+ caughtErrors: "all",
59
+ caughtErrorsIgnorePattern: "^_",
60
+ destructuredArrayIgnorePattern: "^_",
61
+ ignoreClassWithStaticInitBlock: false,
62
+ ignoreRestSiblings: false,
63
+ reportUsedIgnorePattern: false,
64
+ vars: "all",
65
+ varsIgnorePattern: "^_"
66
+ }],
67
+ "no-undef": [0, { typeof: false }]
73
68
  };
74
69
 
75
- // src/external.ts
76
- var import_js = __toESM(require("@eslint/js"), 1);
77
- var import_flat = __toESM(require("eslint-config-prettier/flat"), 1);
78
- var import_typescript_eslint = require("typescript-eslint");
70
+ //#endregion
71
+ //#region src/external.ts
72
+ const { browser, node, nodeBuiltin, vitest } = globals.default;
79
73
 
80
- // src/packageName.ts
81
- var packageName = "@aryaemami59/eslint-config";
74
+ //#endregion
75
+ //#region package.json
76
+ var name = "@aryaemami59/eslint-config";
82
77
 
83
- // src/globalIgnores.ts
84
- var globalIgnores = {
85
- name: `${packageName}/global-ignores`,
86
- ignores: [
87
- "**/dist/",
88
- "**/build/",
89
- "**/lib/",
90
- "**/coverage/",
91
- "**/__snapshots__/",
92
- "**/temp/",
93
- "**/.temp/",
94
- "**/.tmp/",
95
- "**/.yalc/",
96
- "**/.yarn/",
97
- "**/.docusaurus/",
98
- "**/.next/",
99
- "**/.expo/",
100
- "**/*.snap"
101
- ]
78
+ //#endregion
79
+ //#region src/globalIgnores.ts
80
+ /**
81
+ * An object representing
82
+ * {@link https://eslint.org/docs/latest/use/configure/ignore#ignoring-files | **global ignore patterns**}
83
+ * for ESLint configuration.
84
+ *
85
+ * @since 0.0.3
86
+ * @public
87
+ */
88
+ const globalIgnores = {
89
+ ignores: [
90
+ "**/__snapshots__/",
91
+ "**/.docusaurus/",
92
+ "**/.expo/",
93
+ "**/.next/",
94
+ "**/.playwright/",
95
+ "**/.temp/",
96
+ "**/.tmp/",
97
+ "**/.turbo/",
98
+ "**/.wrangler/",
99
+ "**/.yalc/",
100
+ "**/.yarn/",
101
+ "**/*.snap",
102
+ "**/build/",
103
+ "**/coverage/",
104
+ "**/dist/",
105
+ "**/temp/"
106
+ ],
107
+ name: `${name}/global-ignores`
102
108
  };
103
109
 
104
- // src/globals.ts
105
- var import_globals = __toESM(require("globals"), 1);
106
- var { browser, node, nodeBuiltin, vitest } = import_globals.default;
107
- var vitestGlobals = {
108
- suite: "writable",
109
- test: "writable",
110
- chai: "writable",
111
- describe: "writable",
112
- it: "writable",
113
- expectTypeOf: "writable",
114
- assertType: "writable",
115
- expect: "writable",
116
- assert: "writable",
117
- vitest: "writable",
118
- vi: "writable",
119
- beforeAll: "writable",
120
- afterAll: "writable",
121
- beforeEach: "writable",
122
- afterEach: "writable",
123
- onTestFailed: "writable",
124
- onTestFinished: "writable"
110
+ //#endregion
111
+ //#region src/globals.ts
112
+ /**
113
+ * An object representing the
114
+ * {@link https://vitest.dev/config/#globals | globals} provided by
115
+ * {@link https://vitest.dev | **Vitest**} for use in testing.
116
+ *
117
+ * @since 0.0.3
118
+ * @public
119
+ */
120
+ const vitestGlobals = {
121
+ afterAll: "writable",
122
+ afterEach: "writable",
123
+ assert: "writable",
124
+ assertType: "writable",
125
+ beforeAll: "writable",
126
+ beforeEach: "writable",
127
+ chai: "writable",
128
+ describe: "writable",
129
+ expect: "writable",
130
+ expectTypeOf: "writable",
131
+ it: "writable",
132
+ onTestFailed: "writable",
133
+ onTestFinished: "writable",
134
+ suite: "writable",
135
+ test: "writable",
136
+ vi: "writable",
137
+ vitest: "writable"
125
138
  };
126
- var globals = /* @__PURE__ */ Object.assign(
127
- {
128
- ...browser,
129
- ...node,
130
- ...nodeBuiltin
131
- },
132
- {
133
- ...vitest,
134
- ...vitestGlobals
135
- }
136
- );
139
+ /**
140
+ * An object that specifies which global
141
+ * variables are available during linting.
142
+ *
143
+ * @since 0.0.3
144
+ * @public
145
+ */
146
+ const globals$1 = /* @__PURE__ */ Object.assign({
147
+ ...browser,
148
+ ...node,
149
+ ...nodeBuiltin
150
+ }, {
151
+ ...vitest,
152
+ ...vitestGlobals
153
+ });
154
+
155
+ //#endregion
156
+ //#region src/shareableConfigs.ts
157
+ /**
158
+ * Flat ESLint configuration tailored for projects using TypeScript.
159
+ *
160
+ * @example
161
+ * <caption>#### __ECMAScript Modules (ESM) usage inside a file like `eslint.config.mts` or `eslint.config.mjs`__</caption>
162
+ *
163
+ * ```ts
164
+ * import { flatESLintConfig } from '@aryaemami59/eslint-config'
165
+ *
166
+ * export default flatESLintConfig
167
+ * ```
168
+ *
169
+ * @example
170
+ * <caption>#### __CommonJS (CJS) usage inside a file like `eslint.config.cts` or `eslint.config.cjs` (using `require`)__</caption>
171
+ *
172
+ * ```ts
173
+ * const { flatESLintConfig } = require('@aryaemami59/eslint-config')
174
+ *
175
+ * module.exports = flatESLintConfig
176
+ * ```
177
+ *
178
+ * @example
179
+ * <caption>#### __CommonJS (CJS) usage inside a file like `eslint.config.cjs` or `eslint.config.cts` (using dynamic import)__</caption>
180
+ *
181
+ * ```ts
182
+ * module.exports = (async () =>
183
+ * (await import('@aryaemami59/eslint-config')).flatESLintConfig)()
184
+ * ```
185
+ *
186
+ * @example
187
+ * <caption>#### __CommonJS (CJS) usage inside a file like `eslint.config.cts` (using import and export assignment)__</caption>
188
+ *
189
+ * ```ts
190
+ * import eslintConfigModule = require('@aryaemami59/eslint-config')
191
+ * import flatESLintConfig = eslintConfigModule.flatESLintConfig
192
+ *
193
+ * export = flatESLintConfig
194
+ * ```
195
+ *
196
+ * @since 0.0.3
197
+ * @public
198
+ */
199
+ const flatESLintConfig = [
200
+ globalIgnores,
201
+ {
202
+ name: `${_eslint_js.default.meta.name}/recommended`,
203
+ ..._eslint_js.default.configs.recommended
204
+ },
205
+ {
206
+ languageOptions: {
207
+ globals: globals$1,
208
+ parserOptions: {
209
+ ecmaVersion: "latest",
210
+ projectService: true
211
+ }
212
+ },
213
+ linterOptions: {
214
+ reportUnusedDisableDirectives: 2,
215
+ reportUnusedInlineConfigs: 2
216
+ },
217
+ name: `${name}/defaults/overrides`,
218
+ rules: {
219
+ "object-shorthand": [
220
+ 2,
221
+ "always",
222
+ {
223
+ avoidExplicitReturnArrows: true,
224
+ avoidQuotes: true,
225
+ ignoreConstructors: true,
226
+ methodsIgnorePattern: ""
227
+ }
228
+ ],
229
+ "sort-imports": [2, {
230
+ allowSeparatedGroups: true,
231
+ ignoreCase: false,
232
+ ignoreDeclarationSort: true,
233
+ ignoreMemberSort: false,
234
+ memberSyntaxSortOrder: [
235
+ "none",
236
+ "all",
237
+ "multiple",
238
+ "single"
239
+ ]
240
+ }],
241
+ ...disabledRules
242
+ }
243
+ },
244
+ {
245
+ files: ["**/*.cjs"],
246
+ languageOptions: { sourceType: "commonjs" },
247
+ name: `${name}/commonjs-files`,
248
+ rules: { "@typescript-eslint/no-require-imports": [0, {
249
+ allow: [],
250
+ allowAsImport: false
251
+ }] }
252
+ },
253
+ eslint_config_prettier_flat.default
254
+ ];
137
255
 
138
- // src/shareableConfigs.ts
139
- var flatESLintConfig = /* @__PURE__ */ (0, import_typescript_eslint.config)(
140
- // `ignores` must be first.
141
- // config with just `ignores` is the replacement for `.eslintignore`
142
- globalIgnores,
143
- {
144
- name: `${import_js.default.meta.name}/recommended`,
145
- ...import_js.default.configs.recommended
146
- },
147
- import_typescript_eslint.configs.recommended,
148
- import_typescript_eslint.configs.stylistic,
149
- {
150
- name: `${packageName}/defaults/overrides`,
151
- languageOptions: {
152
- globals,
153
- parserOptions: {
154
- ecmaVersion: "latest",
155
- projectService: true
156
- }
157
- },
158
- rules: {
159
- "@typescript-eslint/consistent-type-imports": [
160
- 2,
161
- {
162
- disallowTypeAnnotations: true,
163
- fixStyle: "separate-type-imports",
164
- prefer: "type-imports"
165
- }
166
- ],
167
- "@typescript-eslint/consistent-type-exports": [
168
- 2,
169
- { fixMixedExportsWithInlineTypeSpecifier: false }
170
- ],
171
- "@typescript-eslint/no-explicit-any": [
172
- 2,
173
- {
174
- fixToUnknown: false,
175
- ignoreRestArgs: false
176
- }
177
- ],
178
- "@typescript-eslint/no-empty-object-type": [
179
- 2,
180
- {
181
- allowInterfaces: "never",
182
- allowObjectTypes: "never"
183
- }
184
- ],
185
- "@typescript-eslint/no-restricted-types": [
186
- 2,
187
- {
188
- types: {
189
- "{}": {
190
- message: `
191
- - If you want to represent an empty object, use \`type EmptyObject = Record<string, never>\`.
192
- - If you want to represent an object literal, use either \`type AnyObject = Record<string, any>\` or \`object\`.
193
- - If you want to represent any non-nullish value, use \`type AnyNonNullishValue = NonNullable<unknown>\`.`,
194
- suggest: [
195
- "AnyNonNullishValue",
196
- "EmptyObject",
197
- "AnyObject",
198
- "object",
199
- "Record<string, never>",
200
- "Record<string, any>",
201
- "NonNullable<unknown>"
202
- ]
203
- }
204
- }
205
- }
206
- ],
207
- "@typescript-eslint/no-namespace": [
208
- 2,
209
- {
210
- allowDeclarations: false,
211
- allowDefinitionFiles: true
212
- }
213
- ],
214
- "@typescript-eslint/consistent-type-definitions": [2, "type"],
215
- "sort-imports": [
216
- 2,
217
- {
218
- allowSeparatedGroups: true,
219
- ignoreCase: false,
220
- ignoreDeclarationSort: true,
221
- ignoreMemberSort: false,
222
- memberSyntaxSortOrder: ["none", "all", "multiple", "single"]
223
- }
224
- ],
225
- "@typescript-eslint/unified-signatures": [
226
- 2,
227
- {
228
- ignoreDifferentlyNamedParameters: false,
229
- ignoreOverloadsWithDifferentJSDoc: false
230
- }
231
- ],
232
- "@typescript-eslint/no-unnecessary-type-parameters": [2],
233
- "@typescript-eslint/no-invalid-void-type": [
234
- 2,
235
- {
236
- allowAsThisParameter: false,
237
- allowInGenericTypeArguments: true
238
- }
239
- ],
240
- "@typescript-eslint/no-confusing-void-expression": [
241
- 2,
242
- {
243
- ignoreArrowShorthand: false,
244
- ignoreVoidOperator: false,
245
- ignoreVoidReturningFunctions: false
246
- }
247
- ],
248
- "@typescript-eslint/no-duplicate-type-constituents": [
249
- 2,
250
- {
251
- ignoreIntersections: false,
252
- ignoreUnions: false
253
- }
254
- ],
255
- "@typescript-eslint/require-await": [2],
256
- "@typescript-eslint/no-redundant-type-constituents": [2],
257
- "@typescript-eslint/no-unnecessary-type-arguments": [2],
258
- "@typescript-eslint/no-unnecessary-type-assertion": [
259
- 2,
260
- { typesToIgnore: [] }
261
- ],
262
- "@typescript-eslint/prefer-nullish-coalescing": [
263
- 2,
264
- {
265
- allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing: false,
266
- ignoreBooleanCoercion: false,
267
- ignoreConditionalTests: true,
268
- ignoreIfStatements: false,
269
- ignoreMixedLogicalExpressions: false,
270
- ignorePrimitives: {
271
- bigint: false,
272
- boolean: false,
273
- number: false,
274
- string: false
275
- },
276
- ignoreTernaryTests: false
277
- }
278
- ],
279
- "@typescript-eslint/no-inferrable-types": [
280
- 2,
281
- {
282
- ignoreParameters: false,
283
- ignoreProperties: false
284
- }
285
- ],
286
- "@typescript-eslint/no-require-imports": [
287
- 2,
288
- {
289
- allow: [],
290
- allowAsImport: true
291
- }
292
- ],
293
- "object-shorthand": [
294
- 2,
295
- "always",
296
- {
297
- avoidExplicitReturnArrows: true,
298
- avoidQuotes: true,
299
- ignoreConstructors: true,
300
- methodsIgnorePattern: ""
301
- }
302
- ],
303
- ...disabledRules
304
- },
305
- linterOptions: {
306
- reportUnusedDisableDirectives: 2
307
- }
308
- },
309
- {
310
- name: `${packageName}/commonjs-files`,
311
- files: ["**/*.cjs"],
312
- languageOptions: {
313
- sourceType: "commonjs"
314
- },
315
- rules: {
316
- "@typescript-eslint/no-require-imports": [
317
- 0,
318
- {
319
- allow: [],
320
- allowAsImport: false
321
- }
322
- ]
323
- }
324
- },
325
- import_flat.default
326
- );
256
+ //#endregion
257
+ //#region src/utils.ts
258
+ /**
259
+ * A function that returns {@linkcode flatESLintConfig}
260
+ * along with optional additional overrides.
261
+ * It's made mainly to provide intellisense and eliminate
262
+ * the need for manual type annotations using JSDoc comments.
263
+ *
264
+ * @param [additionalOverrides=[]] - **Optional** additional overrides to apply to the configuration.
265
+ * @returns An augmented version of the default {@linkcode flatESLintConfig}, incorporating any provided overrides.
266
+ *
267
+ * @example
268
+ * <caption>#### __ECMAScript Modules (ESM) usage inside a file like `eslint.config.mts` or `eslint.config.mjs`__</caption>
269
+ *
270
+ * ```ts
271
+ * import { createESLintConfig } from '@aryaemami59/eslint-config'
272
+ *
273
+ * export default createESLintConfig([
274
+ * {
275
+ * rules: {
276
+ * 'no-console': [0],
277
+ * },
278
+ * },
279
+ * {
280
+ * // ...Other additional overrides
281
+ * },
282
+ * ])
283
+ * ```
284
+ *
285
+ * @example
286
+ * <caption>#### __CommonJS (CJS) usage inside a file like `eslint.config.cts` or `eslint.config.cjs` (using `require`)__</caption>
287
+ *
288
+ * ```ts
289
+ * const { createESLintConfig } = require('@aryaemami59/eslint-config')
290
+ *
291
+ * module.exports = createESLintConfig([
292
+ * {
293
+ * rules: {
294
+ * 'no-console': [0],
295
+ * },
296
+ * },
297
+ * {
298
+ * // ...Other additional overrides
299
+ * },
300
+ * ])
301
+ * ```
302
+ *
303
+ * @example
304
+ * <caption>#### __CommonJS (CJS) usage inside a file like `eslint.config.cts` or `eslint.config.cjs` (using dynamic import)__</caption>
305
+ *
306
+ * ```ts
307
+ * module.exports = (async () =>
308
+ * (await import('@aryaemami59/eslint-config')).createESLintConfig([
309
+ * {
310
+ * rules: {
311
+ * 'no-console': [0],
312
+ * },
313
+ * },
314
+ * {
315
+ * // ...Other additional overrides
316
+ * },
317
+ * ]))()
318
+ * ```
319
+ *
320
+ * @example
321
+ * <caption>#### __CommonJS (CJS) usage inside a file like `eslint.config.cts` (using import and export assignment)__</caption>
322
+ *
323
+ * ```ts
324
+ * import eslintConfigModule = require('@aryaemami59/eslint-config')
325
+ * import createESLintConfig = eslintConfigModule.createESLintConfig
326
+ *
327
+ * export = createESLintConfig([
328
+ * {
329
+ * rules: {
330
+ * 'no-console': [0],
331
+ * },
332
+ * },
333
+ * {
334
+ * // ...Other additional overrides
335
+ * },
336
+ * ])
337
+ * ```
338
+ *
339
+ * @since 0.0.3
340
+ * @public
341
+ */
342
+ const createESLintConfig = (additionalOverrides = []) => /* @__PURE__ */ (0, eslint_config.defineConfig)(...flatESLintConfig, ...additionalOverrides);
327
343
 
328
- // src/utils.ts
329
- var createESLintConfig = (additionalOverrides = []) => /* @__PURE__ */ (0, import_typescript_eslint.config)(...flatESLintConfig, ...additionalOverrides);
330
- // Annotate the CommonJS export names for ESM import in node:
331
- 0 && (module.exports = {
332
- config,
333
- configs,
334
- createESLintConfig,
335
- disabledRules,
336
- flatESLintConfig,
337
- globalIgnores,
338
- globals,
339
- js,
340
- parser,
341
- plugin,
342
- prettierConfig,
343
- vitestGlobals
344
+ //#endregion
345
+ Object.defineProperty(exports, 'config', {
346
+ enumerable: true,
347
+ get: function () {
348
+ return typescript_eslint.config;
349
+ }
350
+ });
351
+ Object.defineProperty(exports, 'configs', {
352
+ enumerable: true,
353
+ get: function () {
354
+ return typescript_eslint.configs;
355
+ }
356
+ });
357
+ exports.createESLintConfig = createESLintConfig;
358
+ Object.defineProperty(exports, 'defineConfig', {
359
+ enumerable: true,
360
+ get: function () {
361
+ return eslint_config.defineConfig;
362
+ }
363
+ });
364
+ exports.disabledRules = disabledRules;
365
+ exports.flatESLintConfig = flatESLintConfig;
366
+ exports.globalIgnores = globalIgnores;
367
+ exports.globals = globals$1;
368
+ exports.js = _eslint_js.default;
369
+ Object.defineProperty(exports, 'parser', {
370
+ enumerable: true,
371
+ get: function () {
372
+ return typescript_eslint.parser;
373
+ }
374
+ });
375
+ Object.defineProperty(exports, 'plugin', {
376
+ enumerable: true,
377
+ get: function () {
378
+ return typescript_eslint.plugin;
379
+ }
344
380
  });
381
+ exports.prettierConfig = eslint_config_prettier_flat.default;
382
+ exports.vitestGlobals = vitestGlobals;
345
383
  //# sourceMappingURL=index.cjs.map