You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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 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 text was updated successfully, but these errors were encountered: