fsharp-analyzers 0.25.0

dotnet tool install --global fsharp-analyzers --version 0.25.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local fsharp-analyzers --version 0.25.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=fsharp-analyzers&version=0.25.0
nuke :add-package fsharp-analyzers --version 0.25.0

Ionide FSharp.Analyzers.SDK

Library used for building custom analyzers for FSAC / F# editors.

F# analyzers are live, real-time, project based plugins that enables to diagnose source code and surface custom errors, warnings and code fixes into editor. Read more about analyzers here - https://medium.com/lambda-factory/introducing-f-analyzers-772487889429

How to build

  1. Install the .NET SDK version specified in global.json
  2. dotnet tool restore
  3. Open and build in your favorite IDE, or use dotnet build

How to run sample

  1. dotnet build -c Release
  2. Run the console application:
dotnet run --project src\FSharp.Analyzers.Cli\FSharp.Analyzers.Cli.fsproj -- --project ./samples/OptionAnalyzer/OptionAnalyzer.fsproj --analyzers-path ./samples/OptionAnalyzer/bin/Release --verbosity d

You can also set up a run configuration of FSharp.Analyzers.Cli in your favorite IDE using similar arguments. This also allows you to debug FSharp.Analyzers.Cli.

Using Analyzers

Checkout our Getting Started guide for analyzer users!

Writing Analyzers

Checkout our Getting Started guide for analyzer authors!

How to contribute

Imposter syndrome disclaimer: I want your help. No really, I do.

There might be a little voice inside that tells you you're not ready; that you need to do one more tutorial, or learn another framework, or write a few more blog posts before you can help me with this project.

I assure you, that's not the case.

This project has some clear Contribution Guidelines and expectations that you can read here.

The contribution guidelines outline the process that you'll need to follow to get a patch merged. By making expectations and process explicit, I hope it will make it easier for you to contribute.

And you don't just have to write code. You can help out by writing documentation, tests, or even by giving feedback about this work. (And yes, that includes giving feedback about the contribution guidelines.)

Thank you for contributing!

The project is hosted on GitHub where you can report issues, fork the project and submit pull requests.

The library is available under MIT license, which allows modification and redistribution for both commercial and non-commercial purposes.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.25.0 1,479 2/14/2024
0.24.0 3,437 1/30/2024
0.23.0 5,500 1/5/2024
0.22.0 1,537 12/19/2023
0.21.0 3,869 11/23/2023
0.20.2 812 11/15/2023
0.20.1 230 11/14/2023
0.20.0 136 11/13/2023
0.19.0 479 11/7/2023
0.18.0 300 11/3/2023
0.17.1 738 10/30/2023
0.17.0 378 10/26/2023
0.16.0 709 10/16/2023
0.15.0 423 10/10/2023
0.14.1 325 9/26/2023
0.14.0 232 9/21/2023
0.13.0 173 9/7/2023
0.13.0-beta007 163 9/7/2023
0.12.0 338 5/20/2023
0.11.0 7,869 1/12/2022
0.10.1 11,550 6/23/2021
0.10.0 384 6/22/2021
0.9.0 7,030 5/28/2021
0.8.0 799 2/11/2021
0.7.0 2,842 1/20/2021
0.6.0 584 12/20/2020
0.5.0 684 7/11/2020
0.4.1 868 4/10/2020
0.4.0 9,826 3/8/2020
0.3.1 523 2/28/2020
0.3.0 516 2/17/2020
0.2.0 514 12/24/2019
0.1.0 532 12/17/2019

### Changed

* * [Update to FCS and FSharp.Core 43.8.200](https://github.com/ionide/FSharp.Analyzers.SDK/pull/207)
* * [Fail when no analyzers are registered but the tool is invoked](https://github.com/ionide/FSharp.Analyzers.SDK/pull/202) (thanks @Smaug123!)
* * [Remove Coverlet.Collector package dependency](https://github.com/ionide/FSharp.Analyzers.SDK/pull/206) (thanks @dawedawe!)
* * [Update Ionide.ProjInfo to 0.63.0](https://github.com/ionide/FSharp.Analyzers.SDK/pull/205) (thanks @nojaf!)