├── .gitignore ├── .no-sublime-package ├── .pep8 ├── Default (Linux).sublime-keymap ├── Default (OSX).sublime-keymap ├── Default (Windows).sublime-keymap ├── Default.sublime-commands ├── Flake8Lint.py ├── Flake8Lint.sublime-settings ├── Main.sublime-menu ├── README.md ├── color_theme.py ├── contrib ├── elementtree_contrib │ ├── ElementInclude.py │ ├── ElementPath.py │ ├── ElementTree.py │ ├── HTMLTreeBuilder.py │ ├── SgmlopXMLTreeBuilder.py │ ├── SimpleXMLTreeBuilder.py │ ├── SimpleXMLWriter.py │ ├── TidyHTMLTreeBuilder.py │ ├── TidyTools.py │ ├── XMLTreeBuilder.py │ └── __init__.py ├── flake8 │ ├── __init__.py │ ├── __main__.py │ ├── _pyflakes.py │ ├── callbacks.py │ ├── compat.py │ ├── engine.py │ ├── hooks.py │ ├── main.py │ ├── reporter.py │ ├── run.py │ ├── tests │ │ ├── __init__.py │ │ ├── _test_warnings.py │ │ ├── test_engine.py │ │ ├── test_hooks.py │ │ ├── test_integration.py │ │ ├── test_main.py │ │ ├── test_pyflakes.py │ │ ├── test_reporter.py │ │ └── test_util.py │ └── util.py ├── flake8_debugger.py ├── flake8_import_order │ ├── __about__.py │ ├── __init__.py │ ├── flake8_linter.py │ ├── pylama_linter.py │ └── stdlib_list.py ├── mccabe.py ├── pep8.py ├── pep8ext_naming.py ├── pydocstyle.py └── pyflakes │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── checker.py │ ├── messages.py │ ├── reporter.py │ ├── scripts │ ├── __init__.py │ └── pyflakes.py │ └── test │ ├── __init__.py │ ├── harness.py │ ├── test_api.py │ ├── test_doctests.py │ ├── test_imports.py │ ├── test_other.py │ ├── test_return_with_arguments_inside_generator.py │ └── test_undefined_names.py ├── gutter-themes ├── LICENSE ├── alpha-critical.png ├── alpha-error.png ├── alpha-warning.png ├── bright-critical.png ├── bright-error.png ├── bright-warning.png ├── dark-critical.png ├── dark-error.png ├── dark-warning.png ├── hard-critical.png ├── hard-error.png ├── hard-warning.png ├── simple-critical.png ├── simple-error.png ├── simple-warning.png └── success.png ├── lint.py ├── messages.json └── messages ├── 1.4.0.txt ├── 1.5.0.txt ├── 2.0.0.txt ├── 2.4.0.txt └── install.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.no-sublime-package: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pep8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=.git,contrib 3 | ignore=E402 4 | -------------------------------------------------------------------------------- /Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /Default (Windows).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/Default (Windows).sublime-keymap -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /Flake8Lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/Flake8Lint.py -------------------------------------------------------------------------------- /Flake8Lint.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/Flake8Lint.sublime-settings -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/README.md -------------------------------------------------------------------------------- /color_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/color_theme.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/ElementInclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/ElementInclude.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/ElementPath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/ElementPath.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/ElementTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/ElementTree.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/HTMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/HTMLTreeBuilder.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/SgmlopXMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/SgmlopXMLTreeBuilder.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/SimpleXMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/SimpleXMLTreeBuilder.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/SimpleXMLWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/SimpleXMLWriter.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/TidyHTMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/TidyHTMLTreeBuilder.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/TidyTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/TidyTools.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/XMLTreeBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/XMLTreeBuilder.py -------------------------------------------------------------------------------- /contrib/elementtree_contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/elementtree_contrib/__init__.py -------------------------------------------------------------------------------- /contrib/flake8/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.5.2' 2 | -------------------------------------------------------------------------------- /contrib/flake8/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/__main__.py -------------------------------------------------------------------------------- /contrib/flake8/_pyflakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/_pyflakes.py -------------------------------------------------------------------------------- /contrib/flake8/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/callbacks.py -------------------------------------------------------------------------------- /contrib/flake8/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/compat.py -------------------------------------------------------------------------------- /contrib/flake8/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/engine.py -------------------------------------------------------------------------------- /contrib/flake8/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/hooks.py -------------------------------------------------------------------------------- /contrib/flake8/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/main.py -------------------------------------------------------------------------------- /contrib/flake8/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/reporter.py -------------------------------------------------------------------------------- /contrib/flake8/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/run.py -------------------------------------------------------------------------------- /contrib/flake8/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /contrib/flake8/tests/_test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/_test_warnings.py -------------------------------------------------------------------------------- /contrib/flake8/tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/test_engine.py -------------------------------------------------------------------------------- /contrib/flake8/tests/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/test_hooks.py -------------------------------------------------------------------------------- /contrib/flake8/tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/test_integration.py -------------------------------------------------------------------------------- /contrib/flake8/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/test_main.py -------------------------------------------------------------------------------- /contrib/flake8/tests/test_pyflakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/test_pyflakes.py -------------------------------------------------------------------------------- /contrib/flake8/tests/test_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/test_reporter.py -------------------------------------------------------------------------------- /contrib/flake8/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/tests/test_util.py -------------------------------------------------------------------------------- /contrib/flake8/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8/util.py -------------------------------------------------------------------------------- /contrib/flake8_debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8_debugger.py -------------------------------------------------------------------------------- /contrib/flake8_import_order/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8_import_order/__about__.py -------------------------------------------------------------------------------- /contrib/flake8_import_order/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8_import_order/__init__.py -------------------------------------------------------------------------------- /contrib/flake8_import_order/flake8_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8_import_order/flake8_linter.py -------------------------------------------------------------------------------- /contrib/flake8_import_order/pylama_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8_import_order/pylama_linter.py -------------------------------------------------------------------------------- /contrib/flake8_import_order/stdlib_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/flake8_import_order/stdlib_list.py -------------------------------------------------------------------------------- /contrib/mccabe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/mccabe.py -------------------------------------------------------------------------------- /contrib/pep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pep8.py -------------------------------------------------------------------------------- /contrib/pep8ext_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pep8ext_naming.py -------------------------------------------------------------------------------- /contrib/pydocstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pydocstyle.py -------------------------------------------------------------------------------- /contrib/pyflakes/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.0' 2 | -------------------------------------------------------------------------------- /contrib/pyflakes/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/__main__.py -------------------------------------------------------------------------------- /contrib/pyflakes/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/api.py -------------------------------------------------------------------------------- /contrib/pyflakes/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/checker.py -------------------------------------------------------------------------------- /contrib/pyflakes/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/messages.py -------------------------------------------------------------------------------- /contrib/pyflakes/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/reporter.py -------------------------------------------------------------------------------- /contrib/pyflakes/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/pyflakes/scripts/pyflakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/scripts/pyflakes.py -------------------------------------------------------------------------------- /contrib/pyflakes/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/pyflakes/test/harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/test/harness.py -------------------------------------------------------------------------------- /contrib/pyflakes/test/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/test/test_api.py -------------------------------------------------------------------------------- /contrib/pyflakes/test/test_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/test/test_doctests.py -------------------------------------------------------------------------------- /contrib/pyflakes/test/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/test/test_imports.py -------------------------------------------------------------------------------- /contrib/pyflakes/test/test_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/test/test_other.py -------------------------------------------------------------------------------- /contrib/pyflakes/test/test_return_with_arguments_inside_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/test/test_return_with_arguments_inside_generator.py -------------------------------------------------------------------------------- /contrib/pyflakes/test/test_undefined_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/contrib/pyflakes/test/test_undefined_names.py -------------------------------------------------------------------------------- /gutter-themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/LICENSE -------------------------------------------------------------------------------- /gutter-themes/alpha-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/alpha-critical.png -------------------------------------------------------------------------------- /gutter-themes/alpha-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/alpha-error.png -------------------------------------------------------------------------------- /gutter-themes/alpha-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/alpha-warning.png -------------------------------------------------------------------------------- /gutter-themes/bright-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/bright-critical.png -------------------------------------------------------------------------------- /gutter-themes/bright-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/bright-error.png -------------------------------------------------------------------------------- /gutter-themes/bright-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/bright-warning.png -------------------------------------------------------------------------------- /gutter-themes/dark-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/dark-critical.png -------------------------------------------------------------------------------- /gutter-themes/dark-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/dark-error.png -------------------------------------------------------------------------------- /gutter-themes/dark-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/dark-warning.png -------------------------------------------------------------------------------- /gutter-themes/hard-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/hard-critical.png -------------------------------------------------------------------------------- /gutter-themes/hard-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/hard-error.png -------------------------------------------------------------------------------- /gutter-themes/hard-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/hard-warning.png -------------------------------------------------------------------------------- /gutter-themes/simple-critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/simple-critical.png -------------------------------------------------------------------------------- /gutter-themes/simple-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/simple-error.png -------------------------------------------------------------------------------- /gutter-themes/simple-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/simple-warning.png -------------------------------------------------------------------------------- /gutter-themes/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/gutter-themes/success.png -------------------------------------------------------------------------------- /lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/lint.py -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/messages.json -------------------------------------------------------------------------------- /messages/1.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/messages/1.4.0.txt -------------------------------------------------------------------------------- /messages/1.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/messages/1.5.0.txt -------------------------------------------------------------------------------- /messages/2.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/messages/2.0.0.txt -------------------------------------------------------------------------------- /messages/2.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/messages/2.4.0.txt -------------------------------------------------------------------------------- /messages/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreadatour/Flake8Lint/HEAD/messages/install.txt --------------------------------------------------------------------------------