C# Gentle Formatter

VS Code formatter that keeps indentation on blank lines.
No more noisy git diffs from teammates with different editors.

Download VSIX GitHub

The Problem

Other Formatters
public void Method(){    var x = 1;strippedstrippedstripped    var y = 2;}
Gentle Formatter
public void Method(){    var x = 1;············    var y = 2;}

What It Does

Install

  1. Download the .vsix from GitHub releases
  2. Ctrl+Shift+P → "Extensions: Install from VSIX..."
  3. Format with Shift+Alt+F