首页 > 解决方案 > no-unused-var eslint 用于 nestsjs 中的模块和类型

问题描述

我已将 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"
            }
        }
    ]
}

标签: node.jseslintnestjstslint

解决方案


我相信这来自typescript-eslint 中的这个问题。目前唯一的解决方法是不使用该特定规则。


推荐阅读