From f6d4a69908fef8732a55fd1ad451eccd2ac77782 Mon Sep 17 00:00:00 2001 From: khalilmalla95 Date: Fri, 20 Feb 2026 17:00:26 +0100 Subject: [PATCH] Update linter documentation to clarify severity levels descriptions --- docs/src/process-development/linter-tool/linter-tool.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/process-development/linter-tool/linter-tool.md b/docs/src/process-development/linter-tool/linter-tool.md index 0413160bb..ead435b63 100644 --- a/docs/src/process-development/linter-tool/linter-tool.md +++ b/docs/src/process-development/linter-tool/linter-tool.md @@ -758,10 +758,10 @@ All lint items extend `AbstractLintItem` and implement specific interfaces. #### Severity Levels -- `ERROR`: Critical issues that must be fixed -- `WARNING`: Issues that should be addressed -- `INFO`: Informational messages -- `SUCCESS`: Validation passed successfully +- `ERROR`: Critical issue that **must be fixed**. Will cause the plugin to fail at deployment or runtime. +- `WARNING`: Violation of DSF best practices, or something that **could be an error depending on context**. +- `INFO`: Technically valid, but something looks unusual or incomplete. Worth a second look — no immediate action required. +- `SUCCESS`: Validation passed. Shown to confirm what was checked and give confidence in the covered areas. #### Common Lint Item Methods