Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/neo4j/3.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
Typescript TSLint-删除装饰器上的空白_Typescript_Tslint - Fatal编程技术网

Typescript TSLint-删除装饰器上的空白

Typescript TSLint-删除装饰器上的空白,typescript,tslint,Typescript,Tslint,我在VSCode中遇到了一个TSLint错误,抱怨装饰器中的“at”符号后面没有空格 我有: @Input() 但是TSLint想让我写: @ Input() 我需要在TS lint中调整什么规则来删除此空白(理想情况下不影响其他元素周围的空白) 使用tslint 5.11.0和Typescript 2.3.3 这是我的tslint.json: { "rulesDirectory": [ "node_modules/codelyzer" ], "extends": [

我在VSCode中遇到了一个TSLint错误,抱怨装饰器中的“at”符号后面没有空格

我有:

@Input()
但是TSLint想让我写:

@ Input()
我需要在TS lint中调整什么规则来删除此空白(理想情况下不影响其他元素周围的空白)

使用tslint 5.11.0和Typescript 2.3.3

这是我的tslint.json:

{
  "rulesDirectory": [
    "node_modules/codelyzer"
  ],
  "extends": [
    "rxjs-tslint-rules"
  ],
  "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,
      {
        "order": ["static-field", "instance-field", "constructor", "static-method", "instance-method"]
      }
    ],
    "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": [
      true,
      "always"
    ],
    "triple-equals": [
      true,
      "allow-null-check"
    ],
    "typedef-whitespace": [
      true,
      {
        "call-signature": "nospace",
        "index-signature": "nospace",
        "parameter": "nospace",
        "property-declaration": "nospace",
        "variable-declaration": "nospace"
      }
    ],
    "unified-signatures": true,
    "variable-name": false,
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-module",
      "check-separator",
      "check-type",
      "check-typecast",
      "check-type-operator",
      "check-preblock"
    ],
    "directive-selector": [
      true,
      "attribute",
      "cc",
      "camelCase"
    ],
    "component-selector": [
      true,
      "element",
      "cc",
      "kebab-case"
    ],
    "use-input-property-decorator": true,
    "use-output-property-decorator": true,
    "use-host-property-decorator": true,
    "use-life-cycle-interface": true,
    "use-pipe-transform-interface": true,
    "rxjs-add": {
      "options": [{
        "allowElsewhere": false,
        "allowUnused": false,
        "file": "./src/rxjs-imports.ts"
      }],
      "severity": "error"
    },
    "rxjs-no-unused-add": {
      "severity": "error"
    }
  }
}

当VSCode突出显示错误时,它还会告诉您导致该错误的规则名称

将以下内容添加到脚本下的package.json中

"lint": "tslint \"app/**/*.ts\"",
"lintfix": "tslint --fix app/**/*.ts{,x}"
您可以运行以下命令来查找代码中的问题:

npm run lint
您可以使用以下命令自动修复问题:

npm run lintfix

知道规则名称后,可以在tslint.json文件中禁用它。

您可以发布
tslint.json
设置、tslint版本和TypeScript版本吗?@Josh sure,编辑了这个问题