Metadata-Version: 2.1
Name: flake8_import_linter
Version: 0.1.9
Summary: Flake8 plugin that checks for forbidden imports in your code
Home-page: https://github.com/danmilgram/flake8-import-linter
Author: Dan Milgram
Author-email: ddmilgram@gmail.com
License: MIT
Description: # Flake8 Import Linter
        
        Flake8 plugin that checks for forbidden imports in your code
        
        It works for both python2 and python3 since it only uses ast and configparser libraries :)
        
        # Usage
        
        1. flake8 config
           
            add "flake8_import_linter" section
        
            add "forbidden_modules" config
        
            example:
           
            `[flake8_import_linter]`
           
            `forbidden_modules = pytest, unittest`
        
        3. run flake8 as always
           
            `flake8 .`
        
        4. if a forbidden module is detected, flake8 will show:
           
             `IMP100 forbidden import`
        
        ENJOY!
        
Keywords: flake8 import linter
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Framework :: Flake8
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
