csharpier
csharpier copied to clipboard
CSharpier is an opinionated code formatter for c#.
closes #692
Ideally csharpier would be able to format razor files. It appears that razor files are parsed and converted to c#. See https://github.com/davidebbo/RoslynRazorViewEngine/blob/master/RoslynRazorViewEngine/RoslynRazorViewEngine.cs#L127 How does prettier deal with html files, react...
It would be nice if I could specify a solution file (sln) or project file (csproj) for formatting just like I can do with a folder or individual file. This...
If a file is in csharpierignore, or it has a comment like `// ` then csharpier will not format the file. If a file does not compile, csharpier will also...
Monitor csharpier.com and playground.csharpier.com
Currently csharpier is run with ``` dotnet csharpier . ``` But there is no reason to require the `dotnet` part and it could easily be just ``` csharpier . ```...
Prettier recently added caching to determine if formatting a file can be skipped. https://prettier.io/docs/en/cli.html#--cache Look into what they are doing and determine if a similar feature can be added to...
Visual Studio plugins don't support a way to store options from a dialog in a way that you can define global values, and have them overridden with local values stored...
- Fixed the format of the dotnet local tool command to be as shown in the .NET docs. - Fixed typo for "github actions" I'm not good at dotnet, but...
Hi there, I have went through documentation to check how to configure tab usage in files and it was pretty straightforward so my configuration is like this: 1. created `.csharpierrc.json`...