I'm looking for a way to introduce rustfmt
into a CI pipeline, without forcing a one-big rustfmt
event.
One idea that I had was to ignore formatting errors if a given file was already not correctly formatted (before the change under test). This way there would something preventing formatting from getting worse, but in a slower and more gentle way.
Is anyone aware of an existing project like that? Or any other projects/ideas aiming at similar goal?