The package can remove:
export in export const foo / export function foo
export const foo / export function foo
foo in function (foo)
const foo
- files
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