@commitlint/format
Format commitlint reports
Last updated 3 years ago by escapedcat .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install @commitlint/format 
SYNC missed versions from official npm registry.

Format commitlint reports

@commitlint/format

Getting started

npm install --save @commitlint/format

Example

const format = require('@commitlint/format').default;

const output = format(
  {
    valid: false,
    errorCount: 1,
    warningCount: 1,
    results: [
      {
        valid: false,
        input: 'some: commit message',
        errors: [
          {
            valid: false,
            level: 2,
            name: 'some-error',
            message: 'This will show up red as it has level 2',
          },
        ],
        warnings: [
          {
            valid: true,
            level: 0,
            name: 'some-hint',
            message: 'This will not show up as it has level 0',
          },
          {
            valid: false,
            level: 1,
            name: 'some-warning',
            message: 'This will show up yellow as it has level 1',
          },
        ],
      },
    ],
  },
  {
    color: false,
  }
);

process.stdout.write(output);

/* => [
  '✖   This will show up red as it has level 2 [some-error]',
  '    This will not show up as it has level 0 [some-hint]',
  '⚠   This will show up yellow as it has level 1 [some-warning]',
  '✖   found 1 problems, 2 warnings'
] */

Consult docs/api for comprehensive documentation.

Current Tags

  • 17.0.0                                ...           latest (3 years ago)

43 Versions

  • 17.0.0                                ...           3 years ago
  • 16.2.1                                ...           3 years ago
  • 16.0.0                                ...           3 years ago
  • 15.0.0                                ...           3 years ago
  • 8.3.6                                ...           3 years ago
  • 14.1.0                                ...           3 years ago
  • 14.0.0                                ...           3 years ago
  • 13.2.0                                ...           3 years ago
  • 13.1.0                                ...           3 years ago
  • 13.0.0                                ...           4 years ago
  • 12.1.4                                ...           4 years ago
  • 12.1.3                                ...           4 years ago
  • 12.1.2                                ...           4 years ago
  • 12.1.1                                ...           4 years ago
  • 12.0.1                                ...           4 years ago
  • 12.0.0                                ...           4 years ago
  • 11.0.0                                ...           4 years ago
  • 10.0.0                                ...           4 years ago
  • 9.1.2                                ...           4 years ago
  • 9.1.1                                ...           4 years ago
  • 9.1.0                                ...           4 years ago
  • 9.0.1                                ...           5 years ago
  • 9.0.0                                ...           5 years ago
  • 8.3.4                                ...           5 years ago
  • 8.3.2                                ...           5 years ago
  • 8.3.0                                ...           5 years ago
  • 8.2.0                                ...           5 years ago
  • 8.1.0                                ...           5 years ago
  • 8.0.0                                ...           6 years ago
  • 7.6.1                                ...           6 years ago
  • 7.6.0                                ...           6 years ago
  • 7.5.0                                ...           6 years ago
  • 7.4.0                                ...           6 years ago
  • 7.3.1                                ...           6 years ago
  • 7.3.0                                ...           6 years ago
  • 7.2.1                                ...           6 years ago
  • 7.2.0                                ...           6 years ago
  • 7.1.2                                ...           6 years ago
  • 7.1.1                                ...           6 years ago
  • 7.0.0                                ...           7 years ago
  • 6.1.3                                ...           7 years ago
  • 6.1.2                                ...           7 years ago
  • 6.1.1                                ...           7 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (1)

Copyright 2013 - present © cnpmjs.org | Home |