mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
@typescript-eslint/interface-name-prefix
This commit is contained in:
@@ -439,7 +439,7 @@ namespace Utils {
|
||||
}
|
||||
|
||||
namespace Harness {
|
||||
// tslint:disable-next-line:interface-name
|
||||
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
||||
export interface IO {
|
||||
newLine(): string;
|
||||
getCurrentDirectory(): string;
|
||||
|
||||
@@ -4,7 +4,8 @@ namespace ts.server {
|
||||
projectRootPath: Path;
|
||||
}
|
||||
|
||||
// tslint:disable-next-line interface-name (for backwards-compatibility)
|
||||
// for backwards-compatibility
|
||||
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
||||
export interface ITypingsInstaller {
|
||||
isKnownTypesPackageName(name: string): boolean;
|
||||
installPackage(options: InstallPackageOptionsWithProject): Promise<ApplyCodeActionCommandResult>;
|
||||
|
||||
@@ -102,7 +102,7 @@ namespace ts {
|
||||
* snapshot is observably immutable. i.e. the same calls with the same parameters will return
|
||||
* the same values.
|
||||
*/
|
||||
// tslint:disable-next-line interface-name
|
||||
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
||||
export interface IScriptSnapshot {
|
||||
/** Gets a portion of the script snapshot specified by [start, end). */
|
||||
getText(start: number, end: number): string;
|
||||
|
||||
Reference in New Issue
Block a user