Metadata-Version: 2.1
Name: flake8_sleep
Version: 0.0.1
Summary: flake8 plugin which checks that there is no use of sleep in the code.
Home-page: https://github.com/experquiz/flake8-sleep
Author: Nathan Malnoury
Author-email: nathan.malnoury@experquiz.com
License: MIT
Description: # flake8-sleep
        flake8 plugin which checks that sleep is not used
        
        flake8-sleep
        ===========
        
        flake8 plugin which checks for use of sleep function.
        
        ## installation
        
        <!-- `pip install flake8-2020` -->
        Until pipy release, it will have to be done using git clone and local pip install:
        ```shell
        git clone git@github.com:Nathanmalnoury/flake8-sleep.git
        pip install ./flake8-sleep
        ```
        
        
        ## flake8 codes
        
        | Code   | Description                                            |
        |--------|--------------------------------------------------------|
        | SLP100 | SLP100 sleep found             |
        | SLP101 | SLP101 sleep used as a function name.            |
        
        
        ## rationale
        
        Using sleep function should be done carefully, as it will slow down an application. As such, one may want to mark every volountary usage of sleep with a `noqa: SLPXXX` and have a warning otherwise.
        s
        ## as a pre-commit hook
        
        Not available until pypi release.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown
