Skip to main content

Flake8 plugin to find commented out code

Project description

flake8-eradicate

flake8 plugin to find commented out (or so called "dead") code.

This is quite important for the project in a long run. Based on eradicate project.

wemake.services Build Status Coverage Python Version PyPI version

Installation

pip install flake8-eradicate

Usage

Run your flake8 checker as usual. Commented code should raise an error.

We prefer not to raise a warning than to raise a false positive. So, we ignore --aggressive option from eradicate.

Error codes

Error code Description
E800 Found commented out code

Output example

» flake8 tests/fixtures/incorrect.py
tests/fixtures/incorrect.py:1:1: E800: Found commented out code:
--- before/tests/fixtures/incorrect.py
+++ after/tests/fixtures/incorrect.py
@@ -1,16 +1,10 @@

 class Some(object):
-    # property_name = 1
     other_property = 2


-# def function_name():
-#     return None


-# class CommentedClass(object):
 #     def __init__(self) -> None:
-#         self.property = None

 #     def __str__(self) -> str:
-#         return self.__class__.__name__

License

MIT.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flake8-eradicate-0.2.0.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

flake8_eradicate-0.2.0-py3-none-any.whl (6.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page