Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(utils): remove deprecate tag added in #7460 #7463

Merged
merged 1 commit into from
Aug 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions packages/utils/src/ts-eslint/Rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ interface RuleContext<
* Returns the current working directory passed to Linter.
* It is a path to a directory that should be considered as the current working directory.
* @since 6.6.0
* @deprecated Use {@link `cwd`} instead.
*/
getCwd(): string;

Expand All @@ -233,7 +232,6 @@ interface RuleContext<

/**
* Returns the filename associated with the source.
* @deprecated Use {@link `filename`} instead.
*/
getFilename(): string;

Expand All @@ -246,7 +244,6 @@ interface RuleContext<
/**
* Returns the full path of the file on disk without any code block information (unlike `getFilename()`).
* @since 7.28.0
* @deprecated Use {@link `physicalFilename`} instead.
*/
getPhysicalFilename?(): string;

Expand All @@ -265,7 +262,6 @@ interface RuleContext<
/**
* Returns a SourceCode object that you can use to work with the source that
* was passed to ESLint.
* @deprecated Use {@link `sourceCode`} instead.
*/
getSourceCode(): Readonly<SourceCode>;

Expand Down