├── .gitignore ├── .gitmodules ├── README.rst ├── ftplugin └── python │ ├── flaker.py │ ├── pyflakes.vim │ └── test_flaker.py ├── makerelease.py └── test-requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | pyflakes-vim.zip 2 | *.pyc 3 | .cache/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinw/pyflakes-vim/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinw/pyflakes-vim/HEAD/README.rst -------------------------------------------------------------------------------- /ftplugin/python/flaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinw/pyflakes-vim/HEAD/ftplugin/python/flaker.py -------------------------------------------------------------------------------- /ftplugin/python/pyflakes.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinw/pyflakes-vim/HEAD/ftplugin/python/pyflakes.vim -------------------------------------------------------------------------------- /ftplugin/python/test_flaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinw/pyflakes-vim/HEAD/ftplugin/python/test_flaker.py -------------------------------------------------------------------------------- /makerelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinw/pyflakes-vim/HEAD/makerelease.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | mock 3 | --------------------------------------------------------------------------------