Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Latest commit

 

History

History
19 lines (15 loc) · 784 Bytes

index.md

File metadata and controls

19 lines (15 loc) · 784 Bytes
layout title permalink menu order
page
TSLint core formatters
/formatters/
main
2

Lint formatters allow for transformation of lint results into various forms before outputting to stdout or a file.

Formatters are split into two categories: human-readable and machine-readable. Please note that for machine-readable formatters formatters all positioning is zero-indexed (lines start with zero), whereas human-readable formatters are not (lines start with one).

Built-in formatters

{% assign formatters = site.data.formatters | sort: "name" %} {% for formatter in formatters %}

  • {{formatter.formatterName}} - {{formatter.description | markdownify | remove:"

    " | remove: "

    "}} ({{formatter.consumer}}-readable) {% endfor %}