From 25bfbfd9ae0fa889ce7c60e057d3a388aaf57dbf Mon Sep 17 00:00:00 2001 From: dawe Date: Wed, 8 Nov 2023 17:34:12 +0100 Subject: [PATCH] fix urls in attributes --- CHANGELOG.md | 8 ++++++++ .../CopyAndUpdateRecordChangesAllFieldsAnalyzer.fs | 2 +- src/Ionide.Analyzers/Suggestion/IgnoreFunctionAnalyzer.fs | 2 +- .../Suggestion/UnnamedDiscriminatedUnionFieldAnalyzer.fs | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dec07c0..0f7c226 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/Ionide.Analyzers/Suggestion/CopyAndUpdateRecordChangesAllFieldsAnalyzer.fs b/src/Ionide.Analyzers/Suggestion/CopyAndUpdateRecordChangesAllFieldsAnalyzer.fs index 714b790..e0c1d57 100644 --- a/src/Ionide.Analyzers/Suggestion/CopyAndUpdateRecordChangesAllFieldsAnalyzer.fs +++ b/src/Ionide.Analyzers/Suggestion/CopyAndUpdateRecordChangesAllFieldsAnalyzer.fs @@ -11,7 +11,7 @@ type UpdateRecord = SynExprRecordField list * range [] + "https://ionide.io/ionide-analyzers/suggestion/001.html")>] let copyAndUpdateRecordChangesAllFieldsAnalyzer: Analyzer = fun (context: CliContext) -> async { diff --git a/src/Ionide.Analyzers/Suggestion/IgnoreFunctionAnalyzer.fs b/src/Ionide.Analyzers/Suggestion/IgnoreFunctionAnalyzer.fs index 6563895..a1342cb 100644 --- a/src/Ionide.Analyzers/Suggestion/IgnoreFunctionAnalyzer.fs +++ b/src/Ionide.Analyzers/Suggestion/IgnoreFunctionAnalyzer.fs @@ -7,7 +7,7 @@ open FSharp.Compiler.Text [] + "https://ionide.io/ionide-analyzers/suggestion/003.html")>] let ignoreFunctionAnalyzer (ctx: CliContext) = async { let messages = ResizeArray() diff --git a/src/Ionide.Analyzers/Suggestion/UnnamedDiscriminatedUnionFieldAnalyzer.fs b/src/Ionide.Analyzers/Suggestion/UnnamedDiscriminatedUnionFieldAnalyzer.fs index d22d64d..de90145 100644 --- a/src/Ionide.Analyzers/Suggestion/UnnamedDiscriminatedUnionFieldAnalyzer.fs +++ b/src/Ionide.Analyzers/Suggestion/UnnamedDiscriminatedUnionFieldAnalyzer.fs @@ -6,7 +6,7 @@ open FSharp.Compiler.Syntax [] + "https://ionide.io/ionide-analyzers/suggestion/004.html")>] let unnamedDiscriminatedUnionFieldAnalyzer (ctx: CliContext) = async { let messages = ResizeArray()