Disable no-inferrable-types eslint rule (#58306)

This commit is contained in:
Jake Bailey
2024-04-24 09:57:17 -07:00
committed by GitHub
parent 0b71b81d7d
commit 49762119f3
2 changed files with 1 additions and 1 deletions

View File

@@ -127,6 +127,7 @@
"varsIgnorePattern": "^(_+$|_[^_])"
}
],
"@typescript-eslint/no-inferrable-types": "off",
// Pending https://github.com/typescript-eslint/typescript-eslint/issues/4820
"@typescript-eslint/prefer-optional-chain": "off",

View File

@@ -3,7 +3,6 @@
export const versionMajorMinor = "5.5";
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
export const version: string = `${versionMajorMinor}.0-dev`;
/**