node_modules/@eslint/config-array/dist/esm/index.d.ts in immosquare-cleaner-0.1.39 vs node_modules/@eslint/config-array/dist/esm/index.d.ts in immosquare-cleaner-0.1.40

- old
+ new

@@ -73,18 +73,9 @@ * @param {Object} [context] The context object for config functions. * @returns {ConfigArray} The current ConfigArray instance. */ normalizeSync(context?: any): ConfigArray; /** - * Determines if a given file path explicitly matches a `files` entry - * and also doesn't match an `ignores` entry. Configs that don't have - * a `files` property are not considered an explicit match. - * @param {string} filePath The complete path of a file to check. - * @returns {boolean} True if the file path matches a `files` entry - * or false if not. - */ - isExplicitMatch(filePath: string): boolean; - /** * Returns the config object for a given file path and a status that can be used to determine why a file has no config. * @param {string} filePath The complete path of a file to get a config for. * @returns {{ config?: Object, status: "ignored"|"external"|"unconfigured"|"matched" }} * An object with an optional property `config` and property `status`. * `config` is the config object for the specified file as returned by {@linkcode ConfigArray.getConfig},