Logo

dev-resources.site

for different kinds of informations.

Dotnet, C#, code format on JetBrain IDE Rider

Published at
1/13/2023
Categories
dotnet
csharp
jetbrain
codereview
Author
tsotsi1
Categories
4 categories in total
dotnet
open
csharp
open
jetbrain
open
codereview
open
Author
7 person written this
tsotsi1
open
Dotnet, C#, code format on JetBrain IDE Rider

Code review is an unavoidable topic at work for developers. Coding style aside, if the code format is different, that would add difficulty to the code review.

Since then, this article has been about the basic code format for everyone in the same team, which can go through different IDE and platforms. Especially for Jetbrain IDE of C#, Rider. (If anyone is interested in VSCode, we can talk about it later).

Here, I'd like to combine CSharpier and Dotnet format.

Let's get started!



CSharpier

What is CSharpier?

CSharpier is an opinionated code formatter for c#. It uses Roslyn to parse your code and re-prints it using its own rules. The printing process was ported from prettier but has evolved over time.

Quick Start

Install CSharpier globally using the following command.



dotnet tool install csharpier -g


Enter fullscreen mode Exit fullscreen mode

Then format the contents of a directory and its children with the following command.



dotnet csharpier .


Enter fullscreen mode Exit fullscreen mode

CSharpier on Rider Plugin

Steps:
Open Settings -> Plugins -> Search "CSharpier"

Image description

After installation, please "On Save" is turned on.

Image description



Dotnet Format

What is Dotnet Format?

dotnet-format is a code formatter for dotnet that applies style preferences to a project or solution. Preferences will be read from an .editorconfig file, if present, otherwise a default set of preferences will be used. At this time dotnet-format is able to format C# and Visual Basic projects with a subset of supported .editorconfig options.

Quick Start

Install dotnet format



dotnet tool install -g dotnet-format


Enter fullscreen mode Exit fullscreen mode

Steps:

1.Open Settings -> Tools -> File Watchers

Image description

2.Press The โ€œPlus Signโ€ to Add a Custom watcher
Set the name to โ€œdotnet format on saveโ€

  • FileType: C#
  • Scope: Open Files
  • Program: Write dotnet-format
  • Arguments: $SolutionPath$ -verbosity diagnostic--include $FileRelativePath$
    • Append --fix-style warning to fix any style issues automatically on save.
    • Append --fix-analyzers warning to fix any analyzer warnings on save.
      • Advanced (Options)
    • Disabled all advanced option checkboxes.
      • All other values were left default

Image description

3.Press Ok, and Save Settings.



That's it!
Any feedback is welcome. Happy Coding ๐Ÿค˜!



Dotnet Format setup reference:

https://strepto.github.io/Pause/blog/dotnet-format-rider

Featured ones: