Bela VanderVoort
Bela VanderVoort
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...
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...
- [ ] Check for issues closed that aren't on milestone - [ ] Run CSH-Release - [ ] Add details to ChangeLog.md. Highlight breaking changes. Cleanup ones not closed....
See #682 ``` java.io.IOException: Cannot run program "/Users/fredrikwallen/.cache/csharpier/0.17.0/dotnet-csharpier": error=2, No such file or directory ``` I believe the problem is that the directory /Users/fredrikwallen/.cache/csharpier/0.17.0 is empty, possibly because csharpier failed...
Some things that don't work yet. 1. nested directives 2. if the final else needs a specific combination, that won't be in the set 3. we don't actually look at...