ember-template-lint-formatter-sonarqube
TypeScript icon, indicating that this package has built-in type declarations

2.1.2 • Public • Published

ember-template-lint-formatter-sonarqube

CI Build npm version License Dependabot Volta Managed Code Style: prettier

A custom formatter for ember-template-lint that will format the output in SonarQube's generic issue format.

Install

npm i ember-template-lint-formatter-sonarqube --save-dev

# or

yarn add ember-template-lint-formatter-sonarqube --dev

Output will be in 'Generic Issue Format'.

{
  "issues": [
    {
      "engineId": "ember-template-lint",
      "ruleId": "no-bare-strings",
      "severity": "MINOR",
      "type": "CODE_SMELL",
      "primaryLocation": {
        "message": "Non-translated string used",
        "filePath": "app/templates/application.hbs",
        "textRange": {
          "startLine": 1,
          "startColumn": 4,
          "endLine": 1,
          "endColumn": 14
        }
      }
    },
    {
      "engineId": "ember-template-lint",
      "ruleId": "no-bare-strings",
      "severity": "MINOR",
      "type": "CODE_SMELL",
      "primaryLocation": {
        "message": "Non-translated string used",
        "filePath": "app/templates/application.hbs",
        "textRange": {
          "startLine": 1,
          "startColumn": 25,
          "endLine": 1,
          "endColumn": 48
        }
      }
    }
  ]
}

Usage

ember-template-lint . --format ember-template-lint-formatter-sonarqube

Readme

Keywords

Package Sidebar

Install

npm i ember-template-lint-formatter-sonarqube

Weekly Downloads

3

Version

2.1.2

License

MIT

Unpacked Size

10.7 kB

Total Files

6

Last publish

Collaborators

  • scalvert