mirror of
https://github.com/denoland/deno.git
synced 2025-03-05 10:26:44 -05:00

This PR supports returning multiple changes from a lint fix. It works the same way as eslint, see https://eslint.org/docs/latest/extend/custom-rules#applying-fixes . - Return a single fix - Return an array of fixes - Return a generator function with fixes
2 lines
45 B
TypeScript
2 lines
45 B
TypeScript
const value = "unfixed";
|
|
console.log(value);
|