Skip to content

Commit

Permalink
Merge pull request #730 from VWS-Python/rm-100-confidence-vulture
Browse files Browse the repository at this point in the history
Add vulture ignores
  • Loading branch information
adamtheturtle committed Sep 17, 2024
2 parents bdceb78 + c00245c commit 4b96b74
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,39 @@ ignore_path = [
"./src/*.egg-info/",
"./src/*/_setuptools_scm_version.txt",
]

[tool.vulture]
# Ideally we would limit the paths to the source code where we want to ignore names,
# but Vulture does not enable this.
ignore_names = [
# pytest configuration
"pytest_collect_file",
"pytest_collection_modifyitems",
"pytest_plugins",
# Sphinx
"autoclass_content",
"autoclass_content",
"autodoc_member_order",
"copybutton_exclude",
"extensions",
"html_show_copyright",
"html_show_sourcelink",
"html_show_sphinx",
"html_theme",
"html_theme_options",
"html_title",
"htmlhelp_basename",
"intersphinx_mapping",
"language",
"linkcheck_ignore",
"linkcheck_retries",
"master_doc",
"nitpicky",
"project_copyright",
"pygments_style",
"rst_prolog",
"source_suffix",
"spelling_word_list_filename",
"templates_path",
"warning_is_error",
]

0 comments on commit 4b96b74

Please sign in to comment.