#formatter #linter #parser

biome_console

Utilities to print messages (formatted with biome_markup) and diagnostics

10 releases (4 breaking)

0.5.7 Mar 12, 2024
0.5.6 Mar 12, 2024
0.4.0 Jan 9, 2024
0.3.1 Nov 26, 2023
0.0.2 Sep 28, 2023

#9 in #linter

Download history 82/week @ 2023-12-20 80/week @ 2023-12-27 181/week @ 2024-01-03 164/week @ 2024-01-10 623/week @ 2024-01-17 1464/week @ 2024-01-24 1403/week @ 2024-01-31 1588/week @ 2024-02-07 1084/week @ 2024-02-14 878/week @ 2024-02-21 1503/week @ 2024-02-28 2030/week @ 2024-03-06 1139/week @ 2024-03-13 1050/week @ 2024-03-20 781/week @ 2024-03-27 678/week @ 2024-04-03

4,274 downloads per month
Used in 21 crates (16 directly)

MIT/Apache

70KB
1.5K SLoC

biome_console

The crate contains a general abstraction over printing messages (formatted with markup) and diagnostics to a console.

Usage example

The Console trait can be used to print two types of information to the user: messages (in the form of markup) and diagnostics:

console.message(markup! {
    <Info>"Processed "<Emphasis>{count}</Emphasis>" files"</Info>
});

console.diagnostic(
    &mut files,
    Diagnostics::error(file_id, code, title),
);

The following markup elements are supported:

  • Emphasis: Print the content in bold text
  • Dim: Print the content in dimmed text
  • Italic: Print the content in italic text
  • Underline: Print the content in underlined text
  • Error: Set the text color to red
  • Success: Set the text color to green
  • Warn: Set the text color to yellow
  • Info: Set the text color to blue

Note: Markup elements that change the "font" of the printed text (Emphasis, Dim, Italic and Underline) are not supported by the native Windows Console API and will instead get printed as ANSI control codes if the current terminal supports it, or will be ignored entirely

Dependencies

~0.7–1.3MB
~18K SLoC