├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── dev-requirements.txt ├── pylint_flask └── __init__.py ├── scripts ├── test.sh ├── travis-build.sh └── travis-install.sh ├── setup.cfg ├── setup.py ├── test ├── input │ ├── __init__.py │ ├── func_noerror_flask_2_ext.py │ ├── func_noerror_flask_ext_bare_as.py │ ├── func_noerror_flask_ext_long.py │ ├── func_noerror_flask_ext_long_sandwhich.py │ └── func_noerror_flask_ext_wtf.py └── test_func.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source=pylint_flask -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | graft test 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /pylint_flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/pylint_flask/__init__.py -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/scripts/travis-build.sh -------------------------------------------------------------------------------- /scripts/travis-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/scripts/travis-install.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/setup.py -------------------------------------------------------------------------------- /test/input/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/input/func_noerror_flask_2_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/test/input/func_noerror_flask_2_ext.py -------------------------------------------------------------------------------- /test/input/func_noerror_flask_ext_bare_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/test/input/func_noerror_flask_ext_bare_as.py -------------------------------------------------------------------------------- /test/input/func_noerror_flask_ext_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/test/input/func_noerror_flask_ext_long.py -------------------------------------------------------------------------------- /test/input/func_noerror_flask_ext_long_sandwhich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/test/input/func_noerror_flask_ext_long_sandwhich.py -------------------------------------------------------------------------------- /test/input/func_noerror_flask_ext_wtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/test/input/func_noerror_flask_ext_wtf.py -------------------------------------------------------------------------------- /test/test_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/test/test_func.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschaf/pylint-flask/HEAD/tox.ini --------------------------------------------------------------------------------