├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── pyls_flake8 ├── __init__.py └── plugin.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | build 4 | dist 5 | .spyproject 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanspeaks/pyls-flake8/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanspeaks/pyls-flake8/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanspeaks/pyls-flake8/HEAD/README.md -------------------------------------------------------------------------------- /pyls_flake8/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyls_flake8/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanspeaks/pyls-flake8/HEAD/pyls_flake8/plugin.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emanspeaks/pyls-flake8/HEAD/setup.py --------------------------------------------------------------------------------