├── .drone.star ├── .editorconfig ├── .gitignore ├── .pre-commit-hooks.yaml ├── LICENSE ├── README.md ├── assets ├── code.png ├── codes.png ├── colored-source.png ├── colored.png ├── flaky.png ├── grouped-source.png ├── grouped.png ├── json.png ├── logo.png ├── logo.svg ├── plugins.png └── stat.png ├── docs ├── commands │ ├── baseline.md │ ├── code.md │ ├── codes.md │ ├── dropqa.md │ ├── lint.md │ ├── missed.md │ └── plugins.md ├── conf.py ├── config.md ├── formatters.md ├── ide.md ├── index.md ├── parsers.md ├── plugins.md └── troubleshooting.md ├── example.py ├── flakehell ├── __init__.py ├── __main__.py ├── _cli.py ├── _constants.py ├── _logic │ ├── __init__.py │ ├── _baseline.py │ ├── _colors.py │ ├── _config.py │ ├── _discover.py │ ├── _extractors.py │ ├── _plugin.py │ └── _snapshot.py ├── _patched │ ├── __init__.py │ ├── _app.py │ ├── _checkers.py │ ├── _plugins.py │ ├── _processor.py │ ├── _style_guide.py │ └── _violation.py ├── _types.py ├── _version.py ├── commands │ ├── __init__.py │ ├── _baseline.py │ ├── _code.py │ ├── _codes.py │ ├── _lint.py │ ├── _missed.py │ ├── _plugins.py │ └── _version.py ├── formatters │ ├── __init__.py │ ├── _baseline.py │ ├── _colored.py │ ├── _gitlab.py │ ├── _grouped.py │ ├── _json.py │ └── _stat.py ├── parsers │ ├── __init__.py │ ├── _base.py │ ├── _jupyter.py │ ├── _markdown.py │ ├── _python.py │ ├── _rst.py │ └── _yaml.py └── plugins │ ├── __init__.py │ └── _pylint.py ├── markdownlint.json ├── pyproject.toml └── tests ├── __init__.py ├── test_cli.py ├── test_logic ├── __init__.py ├── test_extractors.py └── test_plugin.py ├── test_parsers ├── __init__.py ├── test_jupyter.py ├── test_main.py ├── test_markdown.py ├── test_rst.py └── test_yaml.py ├── test_patched ├── __init__.py └── test_checkers.py └── utils.py /.drone.star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/.drone.star -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/README.md -------------------------------------------------------------------------------- /assets/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/code.png -------------------------------------------------------------------------------- /assets/codes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/codes.png -------------------------------------------------------------------------------- /assets/colored-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/colored-source.png -------------------------------------------------------------------------------- /assets/colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/colored.png -------------------------------------------------------------------------------- /assets/flaky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/flaky.png -------------------------------------------------------------------------------- /assets/grouped-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/grouped-source.png -------------------------------------------------------------------------------- /assets/grouped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/grouped.png -------------------------------------------------------------------------------- /assets/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/json.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/plugins.png -------------------------------------------------------------------------------- /assets/stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/assets/stat.png -------------------------------------------------------------------------------- /docs/commands/baseline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/commands/baseline.md -------------------------------------------------------------------------------- /docs/commands/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/commands/code.md -------------------------------------------------------------------------------- /docs/commands/codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/commands/codes.md -------------------------------------------------------------------------------- /docs/commands/dropqa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/commands/dropqa.md -------------------------------------------------------------------------------- /docs/commands/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/commands/lint.md -------------------------------------------------------------------------------- /docs/commands/missed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/commands/missed.md -------------------------------------------------------------------------------- /docs/commands/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/commands/plugins.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/formatters.md -------------------------------------------------------------------------------- /docs/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/ide.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/parsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/parsers.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/example.py -------------------------------------------------------------------------------- /flakehell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/__init__.py -------------------------------------------------------------------------------- /flakehell/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/__main__.py -------------------------------------------------------------------------------- /flakehell/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_cli.py -------------------------------------------------------------------------------- /flakehell/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_constants.py -------------------------------------------------------------------------------- /flakehell/_logic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/__init__.py -------------------------------------------------------------------------------- /flakehell/_logic/_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/_baseline.py -------------------------------------------------------------------------------- /flakehell/_logic/_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/_colors.py -------------------------------------------------------------------------------- /flakehell/_logic/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/_config.py -------------------------------------------------------------------------------- /flakehell/_logic/_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/_discover.py -------------------------------------------------------------------------------- /flakehell/_logic/_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/_extractors.py -------------------------------------------------------------------------------- /flakehell/_logic/_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/_plugin.py -------------------------------------------------------------------------------- /flakehell/_logic/_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_logic/_snapshot.py -------------------------------------------------------------------------------- /flakehell/_patched/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_patched/__init__.py -------------------------------------------------------------------------------- /flakehell/_patched/_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_patched/_app.py -------------------------------------------------------------------------------- /flakehell/_patched/_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_patched/_checkers.py -------------------------------------------------------------------------------- /flakehell/_patched/_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_patched/_plugins.py -------------------------------------------------------------------------------- /flakehell/_patched/_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_patched/_processor.py -------------------------------------------------------------------------------- /flakehell/_patched/_style_guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_patched/_style_guide.py -------------------------------------------------------------------------------- /flakehell/_patched/_violation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_patched/_violation.py -------------------------------------------------------------------------------- /flakehell/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/_types.py -------------------------------------------------------------------------------- /flakehell/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.8.0' 2 | -------------------------------------------------------------------------------- /flakehell/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/__init__.py -------------------------------------------------------------------------------- /flakehell/commands/_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/_baseline.py -------------------------------------------------------------------------------- /flakehell/commands/_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/_code.py -------------------------------------------------------------------------------- /flakehell/commands/_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/_codes.py -------------------------------------------------------------------------------- /flakehell/commands/_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/_lint.py -------------------------------------------------------------------------------- /flakehell/commands/_missed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/_missed.py -------------------------------------------------------------------------------- /flakehell/commands/_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/_plugins.py -------------------------------------------------------------------------------- /flakehell/commands/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/commands/_version.py -------------------------------------------------------------------------------- /flakehell/formatters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/formatters/__init__.py -------------------------------------------------------------------------------- /flakehell/formatters/_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/formatters/_baseline.py -------------------------------------------------------------------------------- /flakehell/formatters/_colored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/formatters/_colored.py -------------------------------------------------------------------------------- /flakehell/formatters/_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/formatters/_gitlab.py -------------------------------------------------------------------------------- /flakehell/formatters/_grouped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/formatters/_grouped.py -------------------------------------------------------------------------------- /flakehell/formatters/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/formatters/_json.py -------------------------------------------------------------------------------- /flakehell/formatters/_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/formatters/_stat.py -------------------------------------------------------------------------------- /flakehell/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/parsers/__init__.py -------------------------------------------------------------------------------- /flakehell/parsers/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/parsers/_base.py -------------------------------------------------------------------------------- /flakehell/parsers/_jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/parsers/_jupyter.py -------------------------------------------------------------------------------- /flakehell/parsers/_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/parsers/_markdown.py -------------------------------------------------------------------------------- /flakehell/parsers/_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/parsers/_python.py -------------------------------------------------------------------------------- /flakehell/parsers/_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/parsers/_rst.py -------------------------------------------------------------------------------- /flakehell/parsers/_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/parsers/_yaml.py -------------------------------------------------------------------------------- /flakehell/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/plugins/__init__.py -------------------------------------------------------------------------------- /flakehell/plugins/_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/flakehell/plugins/_pylint.py -------------------------------------------------------------------------------- /markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/markdownlint.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_logic/test_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_logic/test_extractors.py -------------------------------------------------------------------------------- /tests/test_logic/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_logic/test_plugin.py -------------------------------------------------------------------------------- /tests/test_parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_parsers/test_jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_parsers/test_jupyter.py -------------------------------------------------------------------------------- /tests/test_parsers/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_parsers/test_main.py -------------------------------------------------------------------------------- /tests/test_parsers/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_parsers/test_markdown.py -------------------------------------------------------------------------------- /tests/test_parsers/test_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_parsers/test_rst.py -------------------------------------------------------------------------------- /tests/test_parsers/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_parsers/test_yaml.py -------------------------------------------------------------------------------- /tests/test_patched/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_patched/test_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/test_patched/test_checkers.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/life4/flakehell/HEAD/tests/utils.py --------------------------------------------------------------------------------