Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/src/process-development/linter-tool/linter-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down