├── .flake8 ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── flake8_rst_docstrings.py ├── pyproject.toml ├── requirements.txt └── tests ├── RST201 └── blocks.py ├── RST202 └── bullets.py ├── RST203 └── def_list.py ├── RST204 └── enumerated.py ├── RST205 └── explicit_markup.py ├── RST206 └── field_lists.py ├── RST207 └── literal.py ├── RST208 └── option_list.py ├── RST210 └── strong.py ├── RST212 └── short_underline.py ├── RST213 └── emphasis.py ├── RST214 ├── literal.py └── plurals.py ├── RST215 ├── backticks.py └── plurals.py ├── RST216 └── roles.py ├── RST217 └── roles.py ├── RST218 └── no_literal_block.py ├── RST219 └── bad_sub_ref.py ├── RST220 └── dup_explicit_target.py ├── RST301 └── nesting.py ├── RST302 └── table.py ├── RST303 └── sphinx-directives.py ├── RST304 ├── __init__.py └── sphinx-roles.py ├── RST305 └── substitution.py ├── RST306 └── unknown_target.py ├── RST307 └── code_invalid_arg.py ├── RST309 └── sub_title.py ├── test_all.py └── test_cases ├── example_unicode.py ├── explicit_signature.py ├── field_list_at_end.py ├── hello_world.py └── not_utf8.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/README.rst -------------------------------------------------------------------------------- /flake8_rst_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/flake8_rst_docstrings.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/RST201/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST201/blocks.py -------------------------------------------------------------------------------- /tests/RST202/bullets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST202/bullets.py -------------------------------------------------------------------------------- /tests/RST203/def_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST203/def_list.py -------------------------------------------------------------------------------- /tests/RST204/enumerated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST204/enumerated.py -------------------------------------------------------------------------------- /tests/RST205/explicit_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST205/explicit_markup.py -------------------------------------------------------------------------------- /tests/RST206/field_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST206/field_lists.py -------------------------------------------------------------------------------- /tests/RST207/literal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST207/literal.py -------------------------------------------------------------------------------- /tests/RST208/option_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST208/option_list.py -------------------------------------------------------------------------------- /tests/RST210/strong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST210/strong.py -------------------------------------------------------------------------------- /tests/RST212/short_underline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST212/short_underline.py -------------------------------------------------------------------------------- /tests/RST213/emphasis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST213/emphasis.py -------------------------------------------------------------------------------- /tests/RST214/literal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST214/literal.py -------------------------------------------------------------------------------- /tests/RST214/plurals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST214/plurals.py -------------------------------------------------------------------------------- /tests/RST215/backticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST215/backticks.py -------------------------------------------------------------------------------- /tests/RST215/plurals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST215/plurals.py -------------------------------------------------------------------------------- /tests/RST216/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST216/roles.py -------------------------------------------------------------------------------- /tests/RST217/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST217/roles.py -------------------------------------------------------------------------------- /tests/RST218/no_literal_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST218/no_literal_block.py -------------------------------------------------------------------------------- /tests/RST219/bad_sub_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST219/bad_sub_ref.py -------------------------------------------------------------------------------- /tests/RST220/dup_explicit_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST220/dup_explicit_target.py -------------------------------------------------------------------------------- /tests/RST301/nesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST301/nesting.py -------------------------------------------------------------------------------- /tests/RST302/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST302/table.py -------------------------------------------------------------------------------- /tests/RST303/sphinx-directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST303/sphinx-directives.py -------------------------------------------------------------------------------- /tests/RST304/__init__.py: -------------------------------------------------------------------------------- 1 | """One line file, see :term:`preset` in the docs.""" 2 | -------------------------------------------------------------------------------- /tests/RST304/sphinx-roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST304/sphinx-roles.py -------------------------------------------------------------------------------- /tests/RST305/substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST305/substitution.py -------------------------------------------------------------------------------- /tests/RST306/unknown_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST306/unknown_target.py -------------------------------------------------------------------------------- /tests/RST307/code_invalid_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST307/code_invalid_arg.py -------------------------------------------------------------------------------- /tests/RST309/sub_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/RST309/sub_title.py -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/test_cases/example_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/test_cases/example_unicode.py -------------------------------------------------------------------------------- /tests/test_cases/explicit_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/test_cases/explicit_signature.py -------------------------------------------------------------------------------- /tests/test_cases/field_list_at_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/test_cases/field_list_at_end.py -------------------------------------------------------------------------------- /tests/test_cases/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/test_cases/hello_world.py -------------------------------------------------------------------------------- /tests/test_cases/not_utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterjc/flake8-rst-docstrings/HEAD/tests/test_cases/not_utf8.py --------------------------------------------------------------------------------