dprint / dprint-intellij

A dprint plugin for Intellij.
https://plugins.jetbrains.com/plugin/18192-dprint
MIT License
13 stars 2 forks source link

Split external formatter #69

Closed ryan-rushton closed 9 months ago

ryan-rushton commented 9 months ago

Overview

This splits up the external formatter class as it is too large and also hard to test with how the IJ class extension works.

I have created a DprintFormattingTask which mirrors the methods from the AsyncFormattingTask. Unfortunately, I cannot extend it directly as it is package private to the AsyncDocumentFormattingService.

Also added tests and fixed up the range and cancel implementations to work should they ever be enabled.