我已将 eslint 添加到我的 nestjs 7 项目中,但对未使用的 vars 错误感到困惑
我在模块、生命周期方法和服务上遇到错误。也有类型错误
import { Controller, Get } from '@nestjs/common';
import {
HealthCheck,
HealthCheckService, ---> got here the the error
MongooseHealthIndicator, ---> got here the the error
} from '@nestjs/terminus';
@Controller('health')
export class HealthController {
constructor(
private health: HealthCheckService,
private mongoose: MongooseHealthIndicator
) {}
@Get()
@HealthCheck()
check() {
return this.health.check([() => this.mongoose.pingCheck('mongoose')]);
}
}
elintrc.js 配置:
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier/@typescript-eslint",
],
env: {
"browser": true,
"es6": true,
"node": true
},
overrides: [
{
"files": ["*.js"],
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
}
]
}