Подтвердить что ты не робот

Обновить TSLint-ошибки: не удалось найти реализации для следующих правил, указанных в конфигурации

Я обновил tslint до 4.0.2, и теперь у меня появилось много ошибок, таких как

Could not find implementations for the following rules specified in the configuration:
    directive-selector-name
    component-selector-name
    directive-selector-type
    component-selector-type
    directive-selector-prefix
    component-selector-prefix
    label-undefined
    no-constructor-vars
    no-duplicate-key
    no-unreachable
    use-strict

Я считаю, что проблема может заключаться в том, что мой tslint.json может быть устаревшим, и мне нужно его обновить, но я не нашел никакой информации о том, как это сделать или даже если мое предположение верно.

tslint.json

{
  "rulesDirectory": [
    "node_modules/codelyzer"
  ],
  "rules": {
    "directive-selector-name": [true, "camelCase"],
    "component-selector-name": [true, "kebab-case"],
    "directive-selector-type": [true, "attribute"],
    "component-selector-type": [true, "element"],
    "directive-selector-prefix": [true, "my"],
    "component-selector-prefix": [true, "my"],
    "use-input-property-decorator": true,
    "use-output-property-decorator": true,
    "use-host-property-decorator": true,
    "no-attribute-parameter-decorator": true,
    "no-input-rename": true,
    "no-output-rename": true,
    "no-forward-ref" :true,
    "use-life-cycle-interface": true,
    "use-pipe-transform-interface": true,
    "pipe-naming": [true, "camelCase", "my"],
    "component-class-suffix": true,
    "directive-class-suffix": true,
    "ban": [true,
      ["_", "extend"],
      ["_", "isNull"],
      ["_", "isDefined"]
    ],
    "class-name": true,
    "comment-format": [false,
      "check-space",
      "check-lowercase"
    ],
    "curly": true,
    "eofline": true,
    "forin": true,
    "indent": [true, 2],
    "interface-name": true,
    "jsdoc-format": true,
    "label-position": true,
    "label-undefined": true,
    "max-line-length": [false, 140],
    "member-ordering": [true,
      "public-before-private",
      "static-before-instance",
      "variables-before-functions"
    ],
    "no-arg": true,
    "no-bitwise": true,
    "no-console": [true,
      "debug",
      "info",
      "time",
      "timeEnd",
      "trace"
    ],
    "no-construct": true,
    "no-constructor-vars": false,
    "no-debugger": true,
    "no-duplicate-key": true,
    "no-duplicate-variable": true,
    "no-empty": true,
    "no-eval": true,
    "no-string-literal": true,
    "no-switch-case-fall-through": true,
    "trailing-comma": true,
    "no-trailing-whitespace": true,
    "no-unused-expression": true,
    "no-unused-variable": true,
    "no-unreachable": true,
    "no-use-before-declare": true,
    "no-var-requires": true,
    "one-line": [true,
      "check-open-brace",
      "check-catch",
      "check-else",
      "check-whitespace"
    ],
    "quotemark": [true, "single"],
    "radix": true,
    "semicolon": true,
    "triple-equals": [true, "allow-null-check"],
    "typedef": [true,
      "callSignature",
      "indexSignature",
      "parameter",
      "propertySignature",
      "variableDeclarator"
    ],
    "typedef-whitespace": [true,
      ["callSignature", "noSpace"],
      ["catchClause", "noSpace"],
      ["indexSignature", "space"]
    ],
    "use-strict": false,
    "variable-name": false,
    "whitespace": [true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-separator",
      "check-type"
    ]
  }
}

packages.json

{
  "dependencies": {
    "@angular/common": "^2.2.4",
    "@angular/compiler": "^2.2.4",
    "@angular/core": "^2.2.4",
    "@angular/forms": "^2.2.4",
    "@angular/http": "^2.2.4",
    "@angular/platform-browser": "^2.2.4",
    "@angular/platform-browser-dynamic": "^2.2.4",
    "@angular/router": "^3.2.4",
    "@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.14",
    "ag-grid": "^7.0.0",
    "angularfire2": "^2.0.0-beta.5",
    "core-js": "^2.4.1",
    "firebase": "^3.6.2",
    "rxjs": "5.0.0-rc.4",
    "zone.js": "^0.7.2"
  },
  "devDependencies": {
    "del": "^2.0.2",
    "gulp": "gulpjs/gulp#4ed9a4a3275559c73a396eff7e1fde3824951ebb",
    "gulp-hub": "frankwallis/gulp-hub#d461b9c700df9010d0a8694e4af1fb96d9f38bf4",
    "gulp-filter": "^4.0.0",
    "gulp-util": "^3.0.7",
    "gulp-sass": "^2.1.1",
    "browser-sync": "^2.18.2",
    "browser-sync-spa": "^1.0.3",
    "karma": "^1.3.0",
    "karma-coverage": "^1.1.1",
    "karma-jasmine": "^1.0.2",
    "karma-junit-reporter": "^1.1.0",
    "jasmine": "^2.4.1",
    "es6-shim": "^0.35.0",
    "karma-chrome-launcher": "^2.0.0",
    "babel-plugin-istanbul": "^3.0.0",
    "karma-webpack": "^1.7.0",
    "webpack": "2.1.0-beta.20",
    "html-webpack-plugin": "^2.24.1",
    "style-loader": "^0.13.0",
    "css-loader": "^0.26.0",
    "postcss-loader": "^1.1.1",
    "autoprefixer": "^6.5.3",
    "json-loader": "^0.5.4",
    "extract-text-webpack-plugin": "^2.0.0-beta.3",
    "html-loader": "^0.4.3",
    "ts-loader": "^1.2.2",
    "sass-loader": "^4.0.2",
    "node-sass": "^3.13.0",
    "eslint": "^3.11.1",
    "eslint-config-xo-space": "^0.15.0",
    "eslint-loader": "^1.6.1",
    "babel-loader": "^6.2.8",
    "babel-eslint": "^7.1.1",
    "eslint-plugin-babel": "^4.0.0",
    "tslint": "^4.0.2",
    "typescript": "^2.0.10",
    "typings": "^2.0.0",
    "tslint-loader": "^3.2.1",
    "codelyzer": "^2.0.0-beta.1"
  },
  "scripts": {
    "build": "gulp",
    "serve": "gulp serve",
    "serve:dist": "gulp serve:dist",
    "test": "gulp test",
    "test:auto": "gulp test:auto"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "browser": true,
      "jasmine": true
    },
    "extends": [
      "xo-space/esnext"
    ]
  }
}
4b9b3361

Ответ 1

Я был в одной лодке. Я не знаю, какова была ваша предыдущая версия tslint, но для меня я обновился с 3.15.1 до 4.0.2, и мой список "broken rule" отличается от вашего. Тем не менее, я могу предложить вам несколько исправлений/объяснений тем, с которыми мы с вами встречались.

Я только что отправился в журнал изменений tslint на GitHub, нашел правило, которое было нарушено, получил номер проблемы в конце строки и посмотрел вопрос, Самый простой способ навигации - добавить номер проблемы в конец URL-адреса проблемы GitHub. Например, label- undefined был http//github.com/palantir/tslint/issues/877

Здесь мне нужно было выяснить

  • label- undefined → typescript компилятор обрабатывает это сейчас, поэтому удалите "label-undefined": true из tslint.json, а затем добавьте "allowUnusedLabels": false в раздел compilerOptions вашего tsconfig.json
  • no-constructor-vars → переименовал правило, поэтому измените "no-constructor-vars" на "no-parameter-properties" в tslint.json
  • no-duplicate-key → удалить "no-duplicate-key": true в целом b/c typescript теперь обрабатывает его (не будет компилироваться, если ключи dup).
  • no-unreachable → typescript обрабатывает это сейчас, поэтому удалите "no-unreachable": true из tslint.json, а затем добавьте "noImplicitReturns": true в раздел compilerOptions вашего tsconfig.json
  • use-strict → удалить правило "use-strict" в целом b/c typescript теперь анализирует все тела модуля в строгом режиме.

Ответ 2

Начиная с, codiserzer 2.0.0-beta.1, есть некоторые нарушения. Они удалили имя-директив-селектор, имя-селектор компонента, директив-селекторный тип, тип-селектор-селектор, префикс директивы-селектора и префикс-селектор компонентов больше не поддерживаются. Вместо этого они добавили следующее правило:

"directive-selector": [true, "attribute", "app", "camelCase"],
"component-selector": [true, "element", "app", "kebab-case"],

Пожалуйста, посмотрите changelog для кодосекретаря и найдите любое правило, которое не поддерживается

Ответ 3

tslint v4 удалил кучу правил, которые больше не имели смысла, а проверка TypeScript стала лучше. Вам нужно использовать tslint v3, если вы все еще хотите использовать эти правила.

Ответ 4

У меня была эта же проблема с предупреждениями Could not find implementations for the following rules..., отображаемыми в моей среде IDE, WebStorm 2016.x. В моем случае реализация правил была предоставлена ​​средой IDE, потому что обновление моего WebStorm устранило проблему.

Я обновил Typescript, TSLint и Codelyzer безрезультатно. Я проверил содержимое моего файла tslint.json и ничего не нашел. Обновление WebStorm устранило проблему.

Ответ 5

У меня была такая же проблема после копирования правил из проекта angular. Просто создайте новый пустой проект typescript, и все будет в порядке.