G-Research.FSharp.Analyzers 0.9.3

dotnet add package G-Research.FSharp.Analyzers --version 0.9.3
NuGet\Install-Package G-Research.FSharp.Analyzers -Version 0.9.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="G-Research.FSharp.Analyzers" Version="0.9.3">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add G-Research.FSharp.Analyzers --version 0.9.3
#r "nuget: G-Research.FSharp.Analyzers, 0.9.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install G-Research.FSharp.Analyzers as a Cake Addin
#addin nuget:?package=G-Research.FSharp.Analyzers&version=0.9.3

// Install G-Research.FSharp.Analyzers as a Cake Tool
#tool nuget:?package=G-Research.FSharp.Analyzers&version=0.9.3

G-Research Fsharp Analyzers

GitHub Workflow Status (event) Nuget (with prereleases)

A curated set of Ionide SDK analyzers for F#.

Usage

To run any analyzer you need to find a way to download the NuGet package locally. At the time of writing there is no standard way to do this, one way this can be done is by using the <PackageDownload>

<Project Sdk="Microsoft.Build.NoTargets/1.0.80"> 

  <PropertyGroup>
    <IsPackable>false</IsPackable>
    <RestorePackagesPath>./.analyzerpackages/</RestorePackagesPath> 
     
    <TargetFramework>net6.0</TargetFramework> 
    <DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder> 
    <AutomaticallyUseReferenceAssemblyPackages>false</AutomaticallyUseReferenceAssemblyPackages> 
  </PropertyGroup>

  <ItemGroup>
    <PackageDownload Include="G-Research.FSharp.Analyzers" Version="[0.1.4]" />
  </ItemGroup>

</Project>

Running dotnet restore will download this locally to ./.analyzerpackages.

Then you need to install the fsharp-analyzers tool.

Next you can run dotnet fsharp-analyzers --project YourProject.fsproj --analyzers-path ./.analyzerpackages/g-research.fsharp.analyzers/0.1.4/lib/net6.0

Please checkout the documentation over at FSharp.Analyzers.SDK.

Contributing

We welcome new contributors! We'll happily receive PRs for bug fixes or small changes. If you're contemplating something larger please get in touch first by opening a GitHub Issue describing the problem and how you propose to solve it.

Scaffold new analyzer

Run

dotnet fsi build.fsx -- -p NewAnalyzer

to scaffold a new analyzer.

License

Copyright © 2023 G-Research

Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.3 2,959 2/16/2024
0.9.2 159 2/16/2024
0.9.1 163 2/15/2024
0.9.0 245 2/15/2024
0.8.0 4,129 1/30/2024
0.7.0 3,262 1/10/2024
0.6.0 698 12/20/2023
0.5.1 448 12/6/2023
0.5.0 204 12/4/2023
0.4.0 2,845 11/23/2023
0.3.1 395 11/15/2023
0.3.0 138 11/14/2023
0.2.0 108 11/10/2023
0.1.6 678 10/26/2023
0.1.5 251 10/18/2023
0.1.4 204 10/16/2023
0.1.3 218 10/12/2023
0.1.2 131 10/10/2023
0.1.1 155 10/10/2023
0.1.0 186 10/6/2023

### Fixed

* * Fixed a false positive of LoggingTemplateMissingValuesAnalyzer. [#78](https://github.com/G-Research/fsharp-analyzers/issues/78)