Metadata-Version: 2.1
Name: flake8-import-linter
Version: 0.1.6
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
        
        # Usage
        
        1. flake8 config
            add "flake8_import_linter" section 
            add "forbidden_modules" config 
        
            example:
            `
                [flake8_import_linter]
                forbidden_modules = "pytest", "unittest"
            `
        
        2. run flake8 as always
            `flake8 .`
        
        3. if a forbidden module is detected, flake8 will show:
             `IMP100 forbiden import`
        
        4. 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
