We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a6c1f commit 05b5a4aCopy full SHA for 05b5a4a
typings/eslint/index.d.ts
@@ -340,6 +340,10 @@ export namespace Rule {
340
getFilename(): string
341
/** @since ESLint v8.40.0 */
342
filename: string
343
+ /** @deprecated removed in ESLint v10 */
344
+ getPhysicalFilename(): string
345
+ /** @since ESLint v8.40.0 */
346
+ physicalFilename: string
347
/** @deprecated removed in ESLint v9 */
348
getScope?(): Scope.Scope
349
/** @deprecated removed in ESLint v10 */
@@ -351,7 +355,7 @@ export namespace Rule {
351
355
report(descriptor: ReportDescriptor): void
352
356
353
357
354
- getCwd?: () => string
358
+ getCwd: () => string
359
360
cwd: string
361
}
0 commit comments