File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52857,7 +52857,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
52857
52857
function sortSymbolsIfTSGoCompat(array: Symbol[] | undefined): Symbol[] | undefined;
52858
52858
function sortSymbolsIfTSGoCompat(array: Symbol[] | undefined): Symbol[] | undefined {
52859
52859
if (__TSGO_COMPAT__ && array) {
52860
- return array.sort(compareSymbols);
52860
+ return array.sort(compareSymbols); // eslint-disable-line local/no-array-mutating-method-expressions
52861
52861
}
52862
52862
return array;
52863
52863
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export const versionMajorMinor = "5.7";
6
6
export const version : string = `${ versionMajorMinor } .0-dev` ;
7
7
8
8
declare global {
9
- var __TSGO_COMPAT__ : boolean | undefined ;
9
+ var __TSGO_COMPAT__ : boolean | undefined ; // eslint-disable-line no-var, @typescript-eslint/naming-convention
10
10
}
11
11
12
12
globalThis . __TSGO_COMPAT__ ??= false ;
You can’t perform that action at this time.
0 commit comments