eslint-plugin-eslint-remove-unwanted-comments
v1.0.1
Published
An Eslint Autofixer for removing unwanted comments and whitelisting a few
Downloads
53
Maintainers
Readme
/##### ESLINT Custom Rule for removing unwanted comments and autofix it #######/
- provides a whitelist so it doesnt remove everything
{
"plugins": ["my-eslint-plugin"],
"rules": {
"my-eslint-plugin/remove-unwanted-comments": ["error", {
"whitelist": ["TODO:", "FIXME:"]
}]
}
}
- UPDATE: The plugin is semi efficient in removing comments that are lines of code that start with //
- Need to fine tune the regex match