1.0.1 • Published 9 months ago

eslint-plugin-eslint-remove-unwanted-comments v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

/##### 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