From 9332fdb2c801047802d092b35d7d0c8bbdb98d55 Mon Sep 17 00:00:00 2001 From: Roman Dvornov Date: Thu, 10 Oct 2024 23:42:23 +0200 Subject: [PATCH] Small fixes --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3f0e9fe..aee96eb 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ # CSSTree Validator -# CSSTree Validator - CSS Validator built on [CSSTree](https://github.com/csstree/csstree). Technically, the package utilizes the capabilities of CSSTree to match CSS syntaxes to various parts of your code and generates a list of errors, if any. @@ -110,8 +108,8 @@ Available helper functions: CSSTree Validator provides several built-in reporters to convert validation results into different formats: -- **console** – Human-readable text suitable for console output. -- **json** – Converts errors into a unified JSON array of objects: +- `console` – Human-readable text suitable for console output. +- `json` – Converts errors into a unified JSON array of objects: ```ts type ErrorEntry = { @@ -126,7 +124,7 @@ CSSTree Validator provides several built-in reporters to convert validation resu } ``` -- **checkstyle** – [Checkstyle](https://checkstyle.sourceforge.io/) XML report format: +- `checkstyle` – [Checkstyle](https://checkstyle.sourceforge.io/) XML report format: ```xml @@ -137,7 +135,7 @@ CSSTree Validator provides several built-in reporters to convert validation resu ``` -- **gnu** – GNU error log format: +- `gnu` – GNU error log format: ``` "FILENAME":LINE.COLUMN: error: MESSAGE