Closed kazushisan closed 1 month ago
this change will make ts-remove-unused handle empty lines in a more sophisticated manner.
example: when const remove is not used in the following file
const remove
export const a = 'a'; export const remove = 'remove'; export const a2 = 'a2';
export const a = 'a'; export const a2 = 'a2';
this change will make ts-remove-unused handle empty lines in a more sophisticated manner.
example: when
const remove
is not used in the following filebefore
after