首页 > 解决方案 > TSLint 不会抱怨缺少导入

问题描述

TSLint 不会抱怨缺少导入(但是,我不能console.log在代码中留下语句)。Linter 说我的代码没有问题,但它没有编译。如何配置 TSLint 以抱怨缺少导入问题?

这是我的 TSLint 配置:

{
  "extends": ["tslint:latest", "tslint-react", "tslint-react-hooks", "tslint-config-prettier"],
  "rulesDirectory": [],
  "rules": {
    "max-line-length": {
      "options": [120]
    },
    "new-parens": true,
    "no-arg": true,
    "no-conditional-assignment": true,
    "no-consecutive-blank-lines": false,
    "no-console": {
      "severity": "warning",
      "options": ["debug", "log", "time", "timeEnd", "trace"]
    },
    "interface-name": false,
    "no-empty-interface": false,
    "object-literal-sort-keys": false,
    "arrow-parens": false,
    "no-namespace": false,
    "no-submodule-imports": false,
    "no-implicit-dependencies": false,
    "variable-name": false,
    "no-conditional-assignment": false,
    "jsx-no-lambda": false,
    "only-arrow-functions": false,
    "object-literal-sort-keys": false,
    "ordered-imports": false,
    "no-string-literal": false,
    "no-bitwise": false,
    "ban-types": {
      "options": []
    },
    "typedef": true,
    "prefer-for-of": false,
    "no-duplicate-imports": false,
    "no-empty": { "severity": "warning" },
    "no-require-imports": { "severity": "warning" },
    "no-var-requires": { "severity": "warning" }
  },
  "jsRules": {
    "max-line-length": {
      "options": [120]
    },
    "no-console": {
      "severity": "warning",
      "options": ["debug", "log", "time", "timeEnd", "trace"]
    }
  }
}

标签: typescripttslint

解决方案


我认为原因是您或 libdeclare您在某处导入的内容是什么.d.ts。在这种情况下,如果您没有导入,打字稿类型系统就不会抱怨它,因为它可能是全局的。


推荐阅读