diff --git a/CHANGELOG.md b/CHANGELOG.md index b4669ef..cd7a447 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased ### Changed +* [Add `RequireQualifiedAccess` to `Severity` type](https://github.com/ionide/FSharp.Analyzers.SDK/pull/199) (thanks @Smaug123!) * [Fail the tool when any analyzers fail to load](https://github.com/ionide/FSharp.Analyzers.SDK/pull/198) (thanks @Smaug123!) ## [0.23.0] - 2024-01-05 diff --git a/docs/content/Dual Analyzer.fsx b/docs/content/Dual Analyzer.fsx index 60f0fff..bced9a5 100644 --- a/docs/content/Dual Analyzer.fsx +++ b/docs/content/Dual Analyzer.fsx @@ -87,7 +87,7 @@ let private topologicallySortedOpenStatementsAnalyzer Type = "Unsorted System open statement" Message = $"%s{openStatementText} was found after non System namespaces where opened!" Code = "SOT001" - Severity = Warning + Severity = Severity.Warning Range = mOpen Fixes = [] } diff --git a/docs/content/Getting Started Writing.fsx b/docs/content/Getting Started Writing.fsx index c1cdde9..e039b21 100644 --- a/docs/content/Getting Started Writing.fsx +++ b/docs/content/Getting Started Writing.fsx @@ -79,7 +79,7 @@ let optionValueAnalyzer: Analyzer = Type = "Option.Value analyzer" Message = "Option.Value shouldn't be used" Code = "OV001" - Severity = Warning + Severity = Severity.Warning Range = FSharp.Compiler.Text.Range.Zero Fixes = [] }