打字稿:如何禁止任何分号警告

时间:2019-06-19 20:21:16

标签: tslint

我想像所有酷孩子一样,所以我非常想使用打字稿。除了不添加不必要的分号外,是否有其他方法可以消除不必要的分号警告?我不想让tslint抱怨分号的任何一种方式。

我的tslint.json:

{
  "defaultSeverity": "warning",
  "extends": [
    "tslint:recommended"
  ],
  "linterOptions": {
    "exclude": [
      "node_modules/**",
      "src/plugins/**"
    ]
  },
  "rules": {
    "quotemark": [true, "single"],
    "indent": [true, "spaces", 2],
    "interface-name": false,
    "ordered-imports": false,
    "object-literal-sort-keys": false,
    "no-consecutive-blank-lines": false,
    "member-access": [true, "no-public"],
    "semicolon": [true, "never"],
    "trailing-comma": "ignore",
    "no-console": false
  }
}

1 个答案:

答案 0 :(得分:0)

问题原来是vscode的tslint扩展。 vscode-tslint已过时,建议使用此扩展名vscode-typescript-tslint-plugin

这个post带我去解决。