Update Bot
This commit is contained in:
23
node_modules/@eslint/config-array/dist/cjs/index.cjs
generated
vendored
23
node_modules/@eslint/config-array/dist/cjs/index.cjs
generated
vendored
@@ -35,9 +35,8 @@ var windowsPath__namespace = /*#__PURE__*/_interopNamespaceDefault(windowsPath);
|
||||
// Types
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** @import * as $eslintobjectschema from "@eslint/object-schema"; */
|
||||
/** @typedef {$eslintobjectschema.PropertyDefinition} PropertyDefinition */
|
||||
/** @typedef {$eslintobjectschema.ObjectDefinition} ObjectDefinition */
|
||||
/** @typedef {import("@eslint/object-schema").PropertyDefinition} PropertyDefinition */
|
||||
/** @typedef {import("@eslint/object-schema").ObjectDefinition} ObjectDefinition */
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Helpers
|
||||
@@ -201,12 +200,10 @@ const filesAndIgnoresSchema = Object.freeze({
|
||||
// Types
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** @import * as $typests from "./types.ts"; */
|
||||
/** @typedef {$typests.ConfigObject} ConfigObject */
|
||||
/** @import * as $minimatch from "minimatch"; */
|
||||
/** @typedef {$minimatch.IMinimatchStatic} IMinimatchStatic */
|
||||
/** @typedef {$minimatch.IMinimatch} IMinimatch */
|
||||
/** @import * as PathImpl from "@jsr/std__path" */
|
||||
/** @typedef {import("./types.ts").ConfigObject} ConfigObject */
|
||||
/** @typedef {import("minimatch").IMinimatchStatic} IMinimatchStatic */
|
||||
/** @typedef {import("minimatch").IMinimatch} IMinimatch */
|
||||
/** @typedef {import("@jsr/std__path")} PathImpl */
|
||||
|
||||
/*
|
||||
* This is a bit of a hack to make TypeScript happy with the Rollup-created
|
||||
@@ -215,7 +212,7 @@ const filesAndIgnoresSchema = Object.freeze({
|
||||
* for `ObjectSchema`. To work around that, we just import the type manually
|
||||
* and give it a different name to use in the JSDoc comments.
|
||||
*/
|
||||
/** @typedef {ObjectSchema} ObjectSchemaInstance */
|
||||
/** @typedef {import("@eslint/object-schema").ObjectSchema} ObjectSchemaInstance */
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Helpers
|
||||
@@ -1149,8 +1146,7 @@ class ConfigArray extends Array {
|
||||
* @param {Object} config The config to finalize.
|
||||
* @returns {Object} The finalized config.
|
||||
*/
|
||||
// Cast key to `never` to prevent TypeScript from adding the signature `[x: symbol]: (config: any) => any` to the type of the class.
|
||||
[/** @type {never} */ (ConfigArraySymbol.finalizeConfig)](config) {
|
||||
[ConfigArraySymbol.finalizeConfig](config) {
|
||||
return config;
|
||||
}
|
||||
|
||||
@@ -1162,8 +1158,7 @@ class ConfigArray extends Array {
|
||||
* @param {Object} config The config to preprocess.
|
||||
* @returns {Object} The config to use in place of the argument.
|
||||
*/
|
||||
// Cast key to `never` to prevent TypeScript from adding the signature `[x: symbol]: (config: any) => any` to the type of the class.
|
||||
[/** @type {never} */ (ConfigArraySymbol.preprocessConfig)](config) {
|
||||
[ConfigArraySymbol.preprocessConfig](config) {
|
||||
return config;
|
||||
}
|
||||
|
||||
|
||||
18
node_modules/@eslint/config-array/dist/cjs/index.d.cts
generated
vendored
18
node_modules/@eslint/config-array/dist/cjs/index.d.cts
generated
vendored
@@ -1,15 +1,17 @@
|
||||
export { ObjectSchema } from "@eslint/object-schema";
|
||||
export type PropertyDefinition = $eslintobjectschema.PropertyDefinition;
|
||||
export type ObjectDefinition = $eslintobjectschema.ObjectDefinition;
|
||||
export type ConfigObject = $typests.ConfigObject;
|
||||
export type IMinimatchStatic = minimatch.IMinimatchStatic;
|
||||
export type IMinimatch = minimatch.IMinimatch;
|
||||
export type ObjectSchemaInstance = ObjectSchema;
|
||||
export type PropertyDefinition = import("@eslint/object-schema").PropertyDefinition;
|
||||
export type ObjectDefinition = import("@eslint/object-schema").ObjectDefinition;
|
||||
export type ConfigObject = import("./types.cts").ConfigObject;
|
||||
export type IMinimatchStatic = import("minimatch").IMinimatchStatic;
|
||||
export type IMinimatch = import("minimatch").IMinimatch;
|
||||
export type PathImpl = typeof import("@jsr/std__path");
|
||||
export type ObjectSchemaInstance = import("@eslint/object-schema").ObjectSchema;
|
||||
/**
|
||||
* Represents an array of config objects and provides method for working with
|
||||
* those config objects.
|
||||
*/
|
||||
export class ConfigArray extends Array<any> {
|
||||
[x: symbol]: (config: any) => any;
|
||||
/**
|
||||
* Creates a new instance of ConfigArray.
|
||||
* @param {Iterable|Function|Object} configs An iterable yielding config
|
||||
@@ -139,7 +141,3 @@ export namespace ConfigArraySymbol {
|
||||
let finalizeConfig: symbol;
|
||||
let preprocessConfig: symbol;
|
||||
}
|
||||
import type * as $eslintobjectschema from "@eslint/object-schema";
|
||||
import type * as $typests from "./types.cts";
|
||||
import minimatch from 'minimatch';
|
||||
import { ObjectSchema } from '@eslint/object-schema';
|
||||
|
||||
3
node_modules/@eslint/config-array/dist/cjs/std__path/posix.cjs
generated
vendored
3
node_modules/@eslint/config-array/dist/cjs/std__path/posix.cjs
generated
vendored
@@ -1,4 +1,3 @@
|
||||
// @ts-nocheck
|
||||
'use strict';
|
||||
|
||||
// Copyright 2018-2025 the Deno authors. MIT license.
|
||||
@@ -1224,7 +1223,7 @@ const constants = {
|
||||
"(": ")",
|
||||
"[": "]"
|
||||
};
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\))/;
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^\\\]]+\]|\{[^\\}]+\}|\(\?[:!=][^\\)]+\)|\([^|]+\|[^\\)]+\))/;
|
||||
if (str === "") {
|
||||
return false;
|
||||
}
|
||||
|
||||
3
node_modules/@eslint/config-array/dist/cjs/std__path/windows.cjs
generated
vendored
3
node_modules/@eslint/config-array/dist/cjs/std__path/windows.cjs
generated
vendored
@@ -1,4 +1,3 @@
|
||||
// @ts-nocheck
|
||||
'use strict';
|
||||
|
||||
// Copyright 2018-2025 the Deno authors. MIT license.
|
||||
@@ -1565,7 +1564,7 @@ const constants = {
|
||||
"(": ")",
|
||||
"[": "]"
|
||||
};
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\))/;
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^\\\]]+\]|\{[^\\}]+\}|\(\?[:!=][^\\)]+\)|\([^|]+\|[^\\)]+\))/;
|
||||
if (str === "") {
|
||||
return false;
|
||||
}
|
||||
|
||||
18
node_modules/@eslint/config-array/dist/esm/index.d.ts
generated
vendored
18
node_modules/@eslint/config-array/dist/esm/index.d.ts
generated
vendored
@@ -1,15 +1,17 @@
|
||||
export { ObjectSchema } from "@eslint/object-schema";
|
||||
export type PropertyDefinition = $eslintobjectschema.PropertyDefinition;
|
||||
export type ObjectDefinition = $eslintobjectschema.ObjectDefinition;
|
||||
export type ConfigObject = $typests.ConfigObject;
|
||||
export type IMinimatchStatic = minimatch.IMinimatchStatic;
|
||||
export type IMinimatch = minimatch.IMinimatch;
|
||||
export type ObjectSchemaInstance = ObjectSchema;
|
||||
export type PropertyDefinition = import("@eslint/object-schema").PropertyDefinition;
|
||||
export type ObjectDefinition = import("@eslint/object-schema").ObjectDefinition;
|
||||
export type ConfigObject = import("./types.ts").ConfigObject;
|
||||
export type IMinimatchStatic = import("minimatch").IMinimatchStatic;
|
||||
export type IMinimatch = import("minimatch").IMinimatch;
|
||||
export type PathImpl = typeof import("@jsr/std__path");
|
||||
export type ObjectSchemaInstance = import("@eslint/object-schema").ObjectSchema;
|
||||
/**
|
||||
* Represents an array of config objects and provides method for working with
|
||||
* those config objects.
|
||||
*/
|
||||
export class ConfigArray extends Array<any> {
|
||||
[x: symbol]: (config: any) => any;
|
||||
/**
|
||||
* Creates a new instance of ConfigArray.
|
||||
* @param {Iterable|Function|Object} configs An iterable yielding config
|
||||
@@ -139,7 +141,3 @@ export namespace ConfigArraySymbol {
|
||||
let finalizeConfig: symbol;
|
||||
let preprocessConfig: symbol;
|
||||
}
|
||||
import type * as $eslintobjectschema from "@eslint/object-schema";
|
||||
import type * as $typests from "./types.ts";
|
||||
import minimatch from 'minimatch';
|
||||
import { ObjectSchema } from '@eslint/object-schema';
|
||||
|
||||
23
node_modules/@eslint/config-array/dist/esm/index.js
generated
vendored
23
node_modules/@eslint/config-array/dist/esm/index.js
generated
vendored
@@ -15,9 +15,8 @@ export { ObjectSchema } from '@eslint/object-schema';
|
||||
// Types
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** @import * as $eslintobjectschema from "@eslint/object-schema"; */
|
||||
/** @typedef {$eslintobjectschema.PropertyDefinition} PropertyDefinition */
|
||||
/** @typedef {$eslintobjectschema.ObjectDefinition} ObjectDefinition */
|
||||
/** @typedef {import("@eslint/object-schema").PropertyDefinition} PropertyDefinition */
|
||||
/** @typedef {import("@eslint/object-schema").ObjectDefinition} ObjectDefinition */
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Helpers
|
||||
@@ -181,12 +180,10 @@ const filesAndIgnoresSchema = Object.freeze({
|
||||
// Types
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** @import * as $typests from "./types.ts"; */
|
||||
/** @typedef {$typests.ConfigObject} ConfigObject */
|
||||
/** @import * as $minimatch from "minimatch"; */
|
||||
/** @typedef {$minimatch.IMinimatchStatic} IMinimatchStatic */
|
||||
/** @typedef {$minimatch.IMinimatch} IMinimatch */
|
||||
/** @import * as PathImpl from "@jsr/std__path" */
|
||||
/** @typedef {import("./types.ts").ConfigObject} ConfigObject */
|
||||
/** @typedef {import("minimatch").IMinimatchStatic} IMinimatchStatic */
|
||||
/** @typedef {import("minimatch").IMinimatch} IMinimatch */
|
||||
/** @typedef {import("@jsr/std__path")} PathImpl */
|
||||
|
||||
/*
|
||||
* This is a bit of a hack to make TypeScript happy with the Rollup-created
|
||||
@@ -195,7 +192,7 @@ const filesAndIgnoresSchema = Object.freeze({
|
||||
* for `ObjectSchema`. To work around that, we just import the type manually
|
||||
* and give it a different name to use in the JSDoc comments.
|
||||
*/
|
||||
/** @typedef {ObjectSchema} ObjectSchemaInstance */
|
||||
/** @typedef {import("@eslint/object-schema").ObjectSchema} ObjectSchemaInstance */
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Helpers
|
||||
@@ -1129,8 +1126,7 @@ class ConfigArray extends Array {
|
||||
* @param {Object} config The config to finalize.
|
||||
* @returns {Object} The finalized config.
|
||||
*/
|
||||
// Cast key to `never` to prevent TypeScript from adding the signature `[x: symbol]: (config: any) => any` to the type of the class.
|
||||
[/** @type {never} */ (ConfigArraySymbol.finalizeConfig)](config) {
|
||||
[ConfigArraySymbol.finalizeConfig](config) {
|
||||
return config;
|
||||
}
|
||||
|
||||
@@ -1142,8 +1138,7 @@ class ConfigArray extends Array {
|
||||
* @param {Object} config The config to preprocess.
|
||||
* @returns {Object} The config to use in place of the argument.
|
||||
*/
|
||||
// Cast key to `never` to prevent TypeScript from adding the signature `[x: symbol]: (config: any) => any` to the type of the class.
|
||||
[/** @type {never} */ (ConfigArraySymbol.preprocessConfig)](config) {
|
||||
[ConfigArraySymbol.preprocessConfig](config) {
|
||||
return config;
|
||||
}
|
||||
|
||||
|
||||
3
node_modules/@eslint/config-array/dist/esm/std__path/posix.js
generated
vendored
3
node_modules/@eslint/config-array/dist/esm/std__path/posix.js
generated
vendored
@@ -1,4 +1,3 @@
|
||||
// @ts-nocheck
|
||||
// Copyright 2018-2025 the Deno authors. MIT license.
|
||||
// Copyright the Browserify authors. MIT License.
|
||||
function assertPath(path) {
|
||||
@@ -1222,7 +1221,7 @@ const constants = {
|
||||
"(": ")",
|
||||
"[": "]"
|
||||
};
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\))/;
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^\\\]]+\]|\{[^\\}]+\}|\(\?[:!=][^\\)]+\)|\([^|]+\|[^\\)]+\))/;
|
||||
if (str === "") {
|
||||
return false;
|
||||
}
|
||||
|
||||
3
node_modules/@eslint/config-array/dist/esm/std__path/windows.js
generated
vendored
3
node_modules/@eslint/config-array/dist/esm/std__path/windows.js
generated
vendored
@@ -1,4 +1,3 @@
|
||||
// @ts-nocheck
|
||||
// Copyright 2018-2025 the Deno authors. MIT license.
|
||||
// Copyright the Browserify authors. MIT License.
|
||||
function assertPath(path) {
|
||||
@@ -1563,7 +1562,7 @@ const constants = {
|
||||
"(": ")",
|
||||
"[": "]"
|
||||
};
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\))/;
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^\\\]]+\]|\{[^\\}]+\}|\(\?[:!=][^\\)]+\)|\([^|]+\|[^\\)]+\))/;
|
||||
if (str === "") {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user