late-advantage-75311
10/26/2023, 3:42 PMfmt vs fix and some gigantic old slack threads, and want to be sure I have it straight: Is it safe to say that everything in fmt has been merged into fix and fix is the verb to use moving forward? I'm gleaning that from FmtTargetsRequest <: FixTargetsRequest
and the fact that Ruff was added as a Fixer but older but equivalent tools like black were added as Formatters.
Reason I am asking: if I am playing around with tooling to more easily create linters/fmt/fixers, is it necessary to support creating a `fmt`er and a fix er separately or can we just support lint and fix ?bitter-ability-32190
10/26/2023, 3:43 PMfmt is for syntactic changes. fix is for all changes (syntactic and semantic)bitter-ability-32190
10/26/2023, 3:44 PMfix, but some poeple might be using --loop fmt so it'd be innapropriate to get rid of fmt altogether.bitter-ability-32190
10/26/2023, 3:44 PMfix, but that didn't flylate-advantage-75311
10/26/2023, 3:49 PM