G-Research.FSharp.Analyzers 0.14.0

dotnet add package G-Research.FSharp.Analyzers --version 0.14.0
                    
NuGet\Install-Package G-Research.FSharp.Analyzers -Version 0.14.0
                    
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.14.0">
  <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.
<PackageVersion Include="G-Research.FSharp.Analyzers" Version="0.14.0" />
                    
Directory.Packages.props
<PackageReference Include="G-Research.FSharp.Analyzers">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add G-Research.FSharp.Analyzers --version 0.14.0
                    
#r "nuget: G-Research.FSharp.Analyzers, 0.14.0"
                    
#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.
#addin nuget:?package=G-Research.FSharp.Analyzers&version=0.14.0
                    
Install G-Research.FSharp.Analyzers as a Cake Addin
#tool nuget:?package=G-Research.FSharp.Analyzers&version=0.14.0
                    
Install G-Research.FSharp.Analyzers as a Cake Tool

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.14.0 171 7 days ago
0.13.0 8,744 2 months ago
0.12.1 5,416 3 months ago
0.12.0 15,012 5 months ago
0.11.0 19,176 8 months ago
0.10.0 2,494 5/17/2024
0.9.3 14,590 2/16/2024
0.9.2 225 2/16/2024
0.9.1 226 2/15/2024
0.9.0 310 2/15/2024
0.8.0 14,952 1/30/2024
0.7.0 3,336 1/10/2024
0.6.0 749 12/20/2023
0.5.1 504 12/6/2023
0.5.0 252 12/4/2023
0.4.0 2,918 11/23/2023
0.3.1 432 11/15/2023
0.3.0 172 11/14/2023
0.2.0 146 11/10/2023
0.1.6 752 10/26/2023
0.1.5 370 10/18/2023
0.1.4 240 10/16/2023
0.1.3 253 10/12/2023
0.1.2 169 10/10/2023
0.1.1 189 10/10/2023
0.1.0 241 10/6/2023

### Changed

* * Update FSharp.Analyzers.SDK to `0.30.0`. [#89](https://github.com/G-Research/fsharp-analyzers/pull/89)