Skip to content

Commit

Permalink
Merge base branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Smaug123 committed Jan 26, 2024
2 parents 7003cc4 + 4a71ecb commit c967a94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/content/Dual Analyzer.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
}
Expand Down
2 changes: 1 addition & 1 deletion docs/content/Getting Started Writing.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ let optionValueAnalyzer: Analyzer<CliContext> =
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 = []
}
Expand Down

0 comments on commit c967a94

Please sign in to comment.