Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angular/27.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Node.js 如何调试TSLint错误?_Node.js_Angular_Webstorm_Tslint - Fatal编程技术网

Node.js 如何调试TSLint错误?

Node.js 如何调试TSLint错误?,node.js,angular,webstorm,tslint,Node.js,Angular,Webstorm,Tslint,我正在使用webstorm和Angular 2应用程序。有些事情发生了变化,tslint似乎不喜欢我的tslint.json文件 TSLint: TypeError: Cannot read property '1' of undefined 我不知道如何开始调试它,因为错误没有指出(我可以看到)tslint文件中的问题在哪里 顺便说一句,我使用了项目附带的默认tslint文件,我没有做任何更改 我是否可以在我的tslint文件上运行一个验证命令来显示错误的位置 节点:7.8 TSLint:

我正在使用webstorm和Angular 2应用程序。有些事情发生了变化,tslint似乎不喜欢我的tslint.json文件

 TSLint: TypeError: Cannot read property '1' of undefined
我不知道如何开始调试它,因为错误没有指出(我可以看到)tslint文件中的问题在哪里

顺便说一句,我使用了项目附带的默认tslint文件,我没有做任何更改

我是否可以在我的tslint文件上运行一个验证命令来显示错误的位置

节点:7.8 TSLint:5.1

t如下:

{
  "rulesDirectory": [
    "node_modules/codelyzer"
  ],
  "rules": {
    "callable-types": true,
    "class-name": true,
    "comment-format": [
      true,
      "check-space"
    ],
    "curly": true,
    "eofline": true,
    "forin": true,
    "import-blacklist": [true, "rxjs"],
    "import-spacing": true,
    "indent": [
      true,
      "spaces"
    ],
    "interface-over-type-literal": true,
    "label-position": true,
    "max-line-length": [
      true,
      140
    ],
    "member-access": false,
    "member-ordering": [
      true,
      "static-before-instance",
      "variables-before-functions"
    ],
    "no-arg": true,
    "no-bitwise": true,
    "no-console": [
      true,
      "debug",
      "info",
      "time",
      "timeEnd",
      "trace"
    ],
    "no-construct": true,
    "no-debugger": true,
    "no-duplicate-variable": true,
    "no-empty": false,
    "no-empty-interface": true,
    "no-eval": true,
    "no-inferrable-types": [true, "ignore-params"],
    "no-shadowed-variable": true,
    "no-string-literal": false,
    "no-string-throw": true,
    "no-switch-case-fall-through": true,
    "no-trailing-whitespace": true,
    "no-unused-expression": true,
    "no-use-before-declare": true,
    "no-var-keyword": true,
    "object-literal-sort-keys": false,
    "one-line": [
      true,
      "check-open-brace",
      "check-catch",
      "check-else",
      "check-whitespace"
    ],
    "prefer-const": true,
    "quotemark": [
      true,
      "single"
    ],
    "radix": true,
    "semicolon": [
      "always"
    ],
    "triple-equals": [
      true,
      "allow-null-check"
    ],
    "typedef-whitespace": [
      true,
      {
        "call-signature": "nospace",
        "index-signature": "nospace",
        "parameter": "nospace",
        "property-declaration": "nospace",
        "variable-declaration": "nospace"
      }
    ],
    "typeof-compare": true,
    "unified-signatures": true,
    "variable-name": false,
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-separator",
      "check-type"
    ],

    "directive-selector": [true, "attribute", "app", "camelCase"],
    "component-selector": [true, "element", "app", "kebab-case"],
    "use-input-property-decorator": true,
    "use-output-property-decorator": true,
    "use-host-property-decorator": true,
    "no-input-rename": true,
    "no-output-rename": true,
    "use-life-cycle-interface": true,
    "use-pipe-transform-interface": true,
    "component-class-suffix": true,
    "directive-class-suffix": true,
    "no-access-missing-member": true,
    "templates-use-public": true,
    "invoke-injectable": true
  }
}

您可以在您的终端上运行ng lint命令,它将准确地向您显示出现此错误的文件行号。另外,它还取决于您如何设置package.json。

您可以在终端上运行ng lint命令,它将准确地向您显示文件中出现此错误的行号。它还取决于您在
node\u modules/tslint/lib/linter.js中如何设置package.json.

查找
applyRule
定义并替换行:

error_1.showWarningOnce("Warning: " + error.message);
与:


我在
node\u modules/tslint/lib/linter.js
find
applyRule
定义和替换行中提交了

error_1.showWarningOnce("Warning: " + error.message);
与:


我提交了。

I get:“您必须在angular cli项目中才能使用lint命令。”但是“ng serve”可以正常工作。在这种情况下,您的package.json中似乎存在配置错误。要么lint命令丢失,要么全局和本地angular版本不匹配。我得到:“您必须在angular cli项目中才能使用lint命令。”但是“ng serve”可以正常工作。在这种情况下,您的package.json中似乎存在配置错误。缺少lint命令,或者全局和本地角度版本不匹配。