Skip to content

Commit

Permalink
Merge pull request #19 from dawedawe/fix_analyzer_attr_url
Browse files Browse the repository at this point in the history
fix urls in attributes
  • Loading branch information
dawedawe authored Nov 8, 2023
2 parents 934c65c + 25bfbfd commit 1377595
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [Unreleased]

### Fixed
* Fix analyzers urls. [#19](https://github.com/ionide/ionide-analyzers/pull/19)

### Added
* Support for referencing a local analyzers SDK. [#18](https://github.com/ionide/ionide-analyzers/pull/18)

## 0.1.1 - 2023-11-07

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type UpdateRecord = SynExprRecordField list * range

[<CliAnalyzer("CopyAndUpdateRecordChangesAllFieldsAnalyzer",
"Detect if all fields in a record update expression are updated.",
"https://ionide.io/ionide-analyzers/hints/001.html")>]
"https://ionide.io/ionide-analyzers/suggestion/001.html")>]
let copyAndUpdateRecordChangesAllFieldsAnalyzer: Analyzer<CliContext> =
fun (context: CliContext) ->
async {
Expand Down
2 changes: 1 addition & 1 deletion src/Ionide.Analyzers/Suggestion/IgnoreFunctionAnalyzer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ open FSharp.Compiler.Text

[<CliAnalyzer("IgnoreFunctionAnalyzer",
"A function is being ignored. Did you mean to execute this?",
"https://ionide.io/ionide-analyzers/hints/003.html")>]
"https://ionide.io/ionide-analyzers/suggestion/003.html")>]
let ignoreFunctionAnalyzer (ctx: CliContext) =
async {
let messages = ResizeArray<Message>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ open FSharp.Compiler.Syntax

[<CliAnalyzer("UnnamedDiscriminatedUnionFieldAnalyzer",
"Verifies each field in a union case is named.",
"https://ionide.io/ionide-analyzers/hints/004.html")>]
"https://ionide.io/ionide-analyzers/suggestion/004.html")>]
let unnamedDiscriminatedUnionFieldAnalyzer (ctx: CliContext) =
async {
let messages = ResizeArray<Message>()
Expand Down

0 comments on commit 1377595

Please sign in to comment.