├── .gitignore ├── .pre-commit-hooks.yaml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bin ├── bnf_to_cnf │ ├── bnf_to_cnf │ │ ├── __init__.py │ │ ├── driver.py │ │ ├── functools.py │ │ ├── node.py │ │ ├── parser.py │ │ ├── translator.py │ │ └── validate.py │ ├── poetry.lock │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── test_node.py │ │ ├── test_parse.py │ │ ├── test_translate.py │ │ ├── test_validation.py │ │ └── utils.py └── doc_extract │ ├── doc_extract │ ├── __init__.py │ ├── driver.py │ ├── extract.py │ └── repository.py │ ├── mypy.ini │ ├── poetry.lock │ ├── pyproject.toml │ ├── setup.py │ └── static │ ├── .gitignore │ ├── Makefile │ ├── elm-package.json │ ├── elm.json │ ├── index.html │ ├── src │ └── Main.elm │ └── styles.css ├── darglint ├── __init__.py ├── analysis │ ├── __init__.py │ ├── abstract_callable_visitor.py │ ├── analysis_helpers.py │ ├── analysis_visitor.py │ ├── argument_visitor.py │ ├── assert_visitor.py │ ├── function_and_method_visitor.py │ ├── function_scoped_visitor.py │ ├── raise_visitor.py │ ├── return_visitor.py │ ├── variable_visitor.py │ └── yield_visitor.py ├── config.py ├── custom_assert.py ├── docstring │ ├── __init__.py │ ├── base.py │ ├── docstring.py │ ├── google.py │ ├── numpy.py │ ├── sections.py │ ├── sphinx.py │ └── style.py ├── driver.py ├── error_report.py ├── errors.py ├── flake8_entry.py ├── function_description.py ├── integrity_checker.py ├── lex.py ├── node.py ├── parse │ ├── __init__.py │ ├── combinator.py │ ├── cyk.py │ ├── google.py │ ├── grammar.py │ ├── grammars │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── google_arguments_section.bnf │ │ ├── google_arguments_section.py │ │ ├── google_base.bnf │ │ ├── google_long_description.bnf │ │ ├── google_long_description.py │ │ ├── google_raises_section.bnf │ │ ├── google_raises_section.py │ │ ├── google_returns_section.bnf │ │ ├── google_returns_section.py │ │ ├── google_returns_section_without_type.bnf │ │ ├── google_returns_section_without_type.py │ │ ├── google_short_description.bnf │ │ ├── google_short_description.py │ │ ├── google_types.bnf │ │ ├── google_yields_section.bnf │ │ ├── google_yields_section.py │ │ ├── google_yields_section_without_type.bnf │ │ ├── google_yields_section_without_type.py │ │ ├── noqa_statement.bnf │ │ ├── numpy.bnf │ │ ├── numpy_arguments_section.bnf │ │ ├── numpy_arguments_section.py │ │ ├── numpy_long_description.bnf │ │ ├── numpy_long_description.py │ │ ├── numpy_other_arguments_section.bnf │ │ ├── numpy_other_arguments_section.py │ │ ├── numpy_raises_section.bnf │ │ ├── numpy_raises_section.py │ │ ├── numpy_receives_section.bnf │ │ ├── numpy_receives_section.py │ │ ├── numpy_returns_section.bnf │ │ ├── numpy_returns_section.py │ │ ├── numpy_short_description.bnf │ │ ├── numpy_short_description.py │ │ ├── numpy_warns_section.bnf │ │ ├── numpy_warns_section.py │ │ ├── numpy_yields_section.bnf │ │ ├── numpy_yields_section.py │ │ ├── sphinx_argument_type_section.bnf │ │ ├── sphinx_argument_type_section.py │ │ ├── sphinx_arguments_section.bnf │ │ ├── sphinx_arguments_section.py │ │ ├── sphinx_base.bnf │ │ ├── sphinx_base.py │ │ ├── sphinx_long_description.bnf │ │ ├── sphinx_long_description.py │ │ ├── sphinx_raises_section.bnf │ │ ├── sphinx_raises_section.py │ │ ├── sphinx_return_type_section.bnf │ │ ├── sphinx_return_type_section.py │ │ ├── sphinx_returns_section.bnf │ │ ├── sphinx_returns_section.py │ │ ├── sphinx_short_description.bnf │ │ ├── sphinx_short_description.py │ │ ├── sphinx_variable_type_section.bnf │ │ ├── sphinx_variable_type_section.py │ │ ├── sphinx_variables_section.bnf │ │ ├── sphinx_variables_section.py │ │ ├── sphinx_yield_type_section.bnf │ │ ├── sphinx_yield_type_section.py │ │ ├── sphinx_yields_section.bnf │ │ ├── sphinx_yields_section.py │ │ └── terminals.bnf │ ├── identifiers.py │ ├── long_description.py │ ├── numpy.py │ └── sphinx.py ├── peaker.py ├── strictness.py ├── token.py └── utils.py ├── docker-build ├── Dockerfile.test36 ├── Dockerfile.test37 ├── Dockerfile.test38 ├── Dockerfile.test39 └── Makefile ├── docs ├── Makefile ├── poster.pdf └── poster.tex ├── integration_tests ├── __init__.py ├── analysis_tests.py ├── compatibility.py ├── end_to_end.py ├── files │ ├── example-ascii.py │ ├── example-latin1.py │ ├── example-utf8.py │ ├── google_example.py │ ├── missing_arg_type.py │ ├── numpy_example.py │ ├── problematic.py │ ├── sphinx_example.py │ ├── strictness_example.py │ └── two_spaces.py ├── goldens.py ├── grammar_size.py ├── max_golden_profile.py ├── performance.py ├── sources.py └── test_flake8.py ├── poetry.lock ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests ├── .pydocstyle.ini ├── __init__.py ├── sphinx_docstrings.py ├── test_abstract_callable_visitor.py ├── test_analysis_visitor.py ├── test_argument_visitor.py ├── test_assert_visitor.py ├── test_config.py ├── test_custom_assert.py ├── test_cyk.py ├── test_docstring.py ├── test_error.py ├── test_error_report.py ├── test_function_and_method_visitor.py ├── test_function_description.py ├── test_function_scoped_visitor.py ├── test_generated_grammar.py ├── test_grammar.py ├── test_identifiers.py ├── test_integrity_checker.py ├── test_lex.py ├── test_long_description_parse.py ├── test_new_google_parser.py ├── test_node.py ├── test_numpy_parser.py ├── test_parser.py ├── test_parser_combinator.py ├── test_peaker.py ├── test_raise_visitor.py ├── test_returns_visitor.py ├── test_sphinx_parser.py ├── test_variable_visitor.py ├── test_yield_visitor.py └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/README.md -------------------------------------------------------------------------------- /bin/bnf_to_cnf/bnf_to_cnf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/bnf_to_cnf/bnf_to_cnf/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/bnf_to_cnf/driver.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/bnf_to_cnf/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/bnf_to_cnf/functools.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/bnf_to_cnf/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/bnf_to_cnf/node.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/bnf_to_cnf/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/bnf_to_cnf/parser.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/bnf_to_cnf/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/bnf_to_cnf/translator.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/bnf_to_cnf/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/bnf_to_cnf/validate.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/poetry.lock -------------------------------------------------------------------------------- /bin/bnf_to_cnf/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/pyproject.toml -------------------------------------------------------------------------------- /bin/bnf_to_cnf/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/setup.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/tests/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/tests/test_node.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/tests/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/tests/test_parse.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/tests/test_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/tests/test_translate.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/tests/test_validation.py -------------------------------------------------------------------------------- /bin/bnf_to_cnf/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/bnf_to_cnf/tests/utils.py -------------------------------------------------------------------------------- /bin/doc_extract/doc_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/doc_extract/doc_extract/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/doc_extract/driver.py -------------------------------------------------------------------------------- /bin/doc_extract/doc_extract/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/doc_extract/extract.py -------------------------------------------------------------------------------- /bin/doc_extract/doc_extract/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/doc_extract/repository.py -------------------------------------------------------------------------------- /bin/doc_extract/mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True 3 | -------------------------------------------------------------------------------- /bin/doc_extract/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/poetry.lock -------------------------------------------------------------------------------- /bin/doc_extract/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/pyproject.toml -------------------------------------------------------------------------------- /bin/doc_extract/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/setup.py -------------------------------------------------------------------------------- /bin/doc_extract/static/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | elm-stuff/ 3 | -------------------------------------------------------------------------------- /bin/doc_extract/static/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/static/Makefile -------------------------------------------------------------------------------- /bin/doc_extract/static/elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/static/elm-package.json -------------------------------------------------------------------------------- /bin/doc_extract/static/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/static/elm.json -------------------------------------------------------------------------------- /bin/doc_extract/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/static/index.html -------------------------------------------------------------------------------- /bin/doc_extract/static/src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/static/src/Main.elm -------------------------------------------------------------------------------- /bin/doc_extract/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/bin/doc_extract/static/styles.css -------------------------------------------------------------------------------- /darglint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darglint/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darglint/analysis/abstract_callable_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/abstract_callable_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/analysis_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/analysis_helpers.py -------------------------------------------------------------------------------- /darglint/analysis/analysis_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/analysis_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/argument_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/argument_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/assert_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/assert_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/function_and_method_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/function_and_method_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/function_scoped_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/function_scoped_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/raise_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/raise_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/return_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/return_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/variable_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/variable_visitor.py -------------------------------------------------------------------------------- /darglint/analysis/yield_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/analysis/yield_visitor.py -------------------------------------------------------------------------------- /darglint/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/config.py -------------------------------------------------------------------------------- /darglint/custom_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/custom_assert.py -------------------------------------------------------------------------------- /darglint/docstring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darglint/docstring/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/docstring/base.py -------------------------------------------------------------------------------- /darglint/docstring/docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/docstring/docstring.py -------------------------------------------------------------------------------- /darglint/docstring/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/docstring/google.py -------------------------------------------------------------------------------- /darglint/docstring/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/docstring/numpy.py -------------------------------------------------------------------------------- /darglint/docstring/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/docstring/sections.py -------------------------------------------------------------------------------- /darglint/docstring/sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/docstring/sphinx.py -------------------------------------------------------------------------------- /darglint/docstring/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/docstring/style.py -------------------------------------------------------------------------------- /darglint/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/driver.py -------------------------------------------------------------------------------- /darglint/error_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/error_report.py -------------------------------------------------------------------------------- /darglint/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/errors.py -------------------------------------------------------------------------------- /darglint/flake8_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/flake8_entry.py -------------------------------------------------------------------------------- /darglint/function_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/function_description.py -------------------------------------------------------------------------------- /darglint/integrity_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/integrity_checker.py -------------------------------------------------------------------------------- /darglint/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/lex.py -------------------------------------------------------------------------------- /darglint/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/node.py -------------------------------------------------------------------------------- /darglint/parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darglint/parse/combinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/combinator.py -------------------------------------------------------------------------------- /darglint/parse/cyk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/cyk.py -------------------------------------------------------------------------------- /darglint/parse/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/google.py -------------------------------------------------------------------------------- /darglint/parse/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammar.py -------------------------------------------------------------------------------- /darglint/parse/grammars/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/Makefile -------------------------------------------------------------------------------- /darglint/parse/grammars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /darglint/parse/grammars/google_arguments_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_arguments_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_arguments_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_arguments_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/google_base.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_base.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_long_description.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_long_description.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_long_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_long_description.py -------------------------------------------------------------------------------- /darglint/parse/grammars/google_raises_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_raises_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_raises_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_raises_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/google_returns_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_returns_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_returns_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_returns_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/google_returns_section_without_type.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_returns_section_without_type.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_returns_section_without_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_returns_section_without_type.py -------------------------------------------------------------------------------- /darglint/parse/grammars/google_short_description.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_short_description.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_short_description.py -------------------------------------------------------------------------------- /darglint/parse/grammars/google_types.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_types.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_yields_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_yields_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_yields_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_yields_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/google_yields_section_without_type.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_yields_section_without_type.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/google_yields_section_without_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/google_yields_section_without_type.py -------------------------------------------------------------------------------- /darglint/parse/grammars/noqa_statement.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/noqa_statement.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_arguments_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_arguments_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_arguments_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_arguments_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_long_description.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_long_description.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_long_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_long_description.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_other_arguments_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_other_arguments_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_other_arguments_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_other_arguments_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_raises_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_raises_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_raises_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_raises_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_receives_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_receives_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_receives_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_receives_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_returns_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_returns_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_returns_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_returns_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_short_description.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_short_description.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_short_description.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_warns_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_warns_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_warns_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_warns_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_yields_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_yields_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/numpy_yields_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/numpy_yields_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_argument_type_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_argument_type_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_argument_type_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_argument_type_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_arguments_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_arguments_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_arguments_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_arguments_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_base.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_base.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_base.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_long_description.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_long_description.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_long_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_long_description.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_raises_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_raises_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_raises_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_raises_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_return_type_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_return_type_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_return_type_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_return_type_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_returns_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_returns_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_returns_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_returns_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_short_description.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_short_description.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_short_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_short_description.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_variable_type_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_variable_type_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_variable_type_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_variable_type_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_variables_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_variables_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_variables_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_variables_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_yield_type_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_yield_type_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_yield_type_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_yield_type_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_yields_section.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_yields_section.bnf -------------------------------------------------------------------------------- /darglint/parse/grammars/sphinx_yields_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/sphinx_yields_section.py -------------------------------------------------------------------------------- /darglint/parse/grammars/terminals.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/grammars/terminals.bnf -------------------------------------------------------------------------------- /darglint/parse/identifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/identifiers.py -------------------------------------------------------------------------------- /darglint/parse/long_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/long_description.py -------------------------------------------------------------------------------- /darglint/parse/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/numpy.py -------------------------------------------------------------------------------- /darglint/parse/sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/parse/sphinx.py -------------------------------------------------------------------------------- /darglint/peaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/peaker.py -------------------------------------------------------------------------------- /darglint/strictness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/strictness.py -------------------------------------------------------------------------------- /darglint/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/token.py -------------------------------------------------------------------------------- /darglint/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/darglint/utils.py -------------------------------------------------------------------------------- /docker-build/Dockerfile.test36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docker-build/Dockerfile.test36 -------------------------------------------------------------------------------- /docker-build/Dockerfile.test37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docker-build/Dockerfile.test37 -------------------------------------------------------------------------------- /docker-build/Dockerfile.test38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docker-build/Dockerfile.test38 -------------------------------------------------------------------------------- /docker-build/Dockerfile.test39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docker-build/Dockerfile.test39 -------------------------------------------------------------------------------- /docker-build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docker-build/Makefile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docs/poster.pdf -------------------------------------------------------------------------------- /docs/poster.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/docs/poster.tex -------------------------------------------------------------------------------- /integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration_tests/analysis_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/analysis_tests.py -------------------------------------------------------------------------------- /integration_tests/compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/compatibility.py -------------------------------------------------------------------------------- /integration_tests/end_to_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/end_to_end.py -------------------------------------------------------------------------------- /integration_tests/files/example-ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/example-ascii.py -------------------------------------------------------------------------------- /integration_tests/files/example-latin1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/example-latin1.py -------------------------------------------------------------------------------- /integration_tests/files/example-utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/example-utf8.py -------------------------------------------------------------------------------- /integration_tests/files/google_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/google_example.py -------------------------------------------------------------------------------- /integration_tests/files/missing_arg_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/missing_arg_type.py -------------------------------------------------------------------------------- /integration_tests/files/numpy_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/numpy_example.py -------------------------------------------------------------------------------- /integration_tests/files/problematic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/problematic.py -------------------------------------------------------------------------------- /integration_tests/files/sphinx_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/sphinx_example.py -------------------------------------------------------------------------------- /integration_tests/files/strictness_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/strictness_example.py -------------------------------------------------------------------------------- /integration_tests/files/two_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/files/two_spaces.py -------------------------------------------------------------------------------- /integration_tests/goldens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/goldens.py -------------------------------------------------------------------------------- /integration_tests/grammar_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/grammar_size.py -------------------------------------------------------------------------------- /integration_tests/max_golden_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/max_golden_profile.py -------------------------------------------------------------------------------- /integration_tests/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/performance.py -------------------------------------------------------------------------------- /integration_tests/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/sources.py -------------------------------------------------------------------------------- /integration_tests/test_flake8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/integration_tests/test_flake8.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.pydocstyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/.pydocstyle.ini -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sphinx_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/sphinx_docstrings.py -------------------------------------------------------------------------------- /tests/test_abstract_callable_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_abstract_callable_visitor.py -------------------------------------------------------------------------------- /tests/test_analysis_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_analysis_visitor.py -------------------------------------------------------------------------------- /tests/test_argument_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_argument_visitor.py -------------------------------------------------------------------------------- /tests/test_assert_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_assert_visitor.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_custom_assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_custom_assert.py -------------------------------------------------------------------------------- /tests/test_cyk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_cyk.py -------------------------------------------------------------------------------- /tests/test_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_docstring.py -------------------------------------------------------------------------------- /tests/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_error.py -------------------------------------------------------------------------------- /tests/test_error_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_error_report.py -------------------------------------------------------------------------------- /tests/test_function_and_method_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_function_and_method_visitor.py -------------------------------------------------------------------------------- /tests/test_function_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_function_description.py -------------------------------------------------------------------------------- /tests/test_function_scoped_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_function_scoped_visitor.py -------------------------------------------------------------------------------- /tests/test_generated_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_generated_grammar.py -------------------------------------------------------------------------------- /tests/test_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_grammar.py -------------------------------------------------------------------------------- /tests/test_identifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_identifiers.py -------------------------------------------------------------------------------- /tests/test_integrity_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_integrity_checker.py -------------------------------------------------------------------------------- /tests/test_lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_lex.py -------------------------------------------------------------------------------- /tests/test_long_description_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_long_description_parse.py -------------------------------------------------------------------------------- /tests/test_new_google_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_new_google_parser.py -------------------------------------------------------------------------------- /tests/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_node.py -------------------------------------------------------------------------------- /tests/test_numpy_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_numpy_parser.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_parser_combinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_parser_combinator.py -------------------------------------------------------------------------------- /tests/test_peaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_peaker.py -------------------------------------------------------------------------------- /tests/test_raise_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_raise_visitor.py -------------------------------------------------------------------------------- /tests/test_returns_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_returns_visitor.py -------------------------------------------------------------------------------- /tests/test_sphinx_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_sphinx_parser.py -------------------------------------------------------------------------------- /tests/test_variable_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_variable_visitor.py -------------------------------------------------------------------------------- /tests/test_yield_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/test_yield_visitor.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terrencepreilly/darglint/HEAD/tox.ini --------------------------------------------------------------------------------