Metadata-Version: 2.1
Name: pylint-web2py3
Version: 0.9.0
Summary: pylint_web2py3 is a disciple of pylint-web2py and pylint_web2py2 with better web2py support
Home-page: https://github.com/vinyldarkscratch/pylint_web2py3
Author: Vinyl Darkscratch
Author-email: vinyldarkscratch@gooborg.com
Maintainer: Vinyl Darkscratch
Maintainer-email: vinyldarkscratch@gooborg.com
License: http://www.gnu.org/copyleft/gpl.html
Description: # pylint_web2py3
        A Pylint plugin that removes Pylint's complaints about web2py code.
        
        ## Description
        Web2py executes user code in special environment populated with predefined objects and types and with objects defined in model files.  It also has magic import mechanism which knows some special places where to find modules.
        
        Pylint doesn't know about these details -- its parser is unable to find these objects and modules, resulting in a flood of laments.
        This plugin:
        - Adds variables defined in models to other models' and controllers' scope
        - Adds definition of some predefined global objects to models and controllers
        - Adds web2py module paths to sys.path, so pylint is able to find them
        
        ## Enabling Plugin
        - Add `--load-plugins=pylint_web2py3` to pylint options
        or
        - Add `load-plugins=pylint_web2py3` to your .pylintrc
        
Keywords: pylint web2py plugin
Platform: any
Description-Content-Type: text/markdown
