I would like to limit it to a subset or removed things
(personally I don't really want to remove unused constants, arguments, and export clauses that are still used in the file)
(i.e. I only want to remove completely unused export function/export const and files)
For arguments and constants there already are eslint rules, so if I have any left they are probably intentionally excluded
The package can remove:
export
inexport const foo
/export function foo
export const foo
/export function foo
foo
infunction (foo)
const foo
I would like to limit it to a subset or removed things (personally I don't really want to remove unused constants, arguments, and
export
clauses that are still used in the file) (i.e. I only want to remove completely unusedexport function
/export const
and files) For arguments and constants there already are eslint rules, so if I have any left they are probably intentionally excluded