gpt4 book ai didi

TypeScript: plugin:prettier/recommended for eslint, 无法使用 override 关键字

转载 作者:行者123 更新时间:2023-12-05 02:38:08 25 4
gpt4 key购买 nike

包版本:

eslint@7.32.0
prettier@2.4.1
eslint-plugin-prettier@4.0.0

我有以下 eslintrc,它只是来自 NestJS 的库存配置:

module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: [
'@typescript-eslint/eslint-plugin',
'filenames'
],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'filenames/match-regex': [2, "^[0-9a-z-.]+$", true]
},
};

这是更漂亮的配置:

{
"singleQuote": true,
"trailingComma": "all"
}

这是 tsconfig:

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"esModuleInterop": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": ".",
"rootDir": ".",
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noImplicitOverride": true
}
}

在我的代码中,我有一个这样的类:

@Injectable()
export class FirebaseStrategy extends PassportStrategy(
FirebaseAuthStrategy,
'firebase',
) {
constructor(private usersService: UsersService) {
super({ extractor: ExtractJwt.fromAuthHeaderAsBearerToken() });
}

override async validate(payload: FirebaseUser): Promise<User | undefined> {
return this.usersService.findByFirebaseUid(payload.uid);
}
}

此代码运行良好,但当我尝试 lint 时,出现以下错误:

/app/src/auth/strategy/firebase.strategy.ts
22:12 error Parsing error: Unexpected token prettier/prettier

有办法解决这个问题吗?我不希望有隐式覆盖。

最佳答案

看起来您需要将 prettier 更新到 2.3.1 之后的任何版本——该版本中添加了对 TypeScript 4.3 功能(如 override 关键字)的支持。您可以在 package.json 中更新它或使用 npm i -D prettier@^2.3.1(假设您使用 npm 作为包管理器)。

关于TypeScript: plugin:prettier/recommended for eslint, 无法使用 override 关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69771794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com