careful-address-89803
08/01/2022, 9:16 PMdef config_request(self) -> ConfigFilesRequest:
return ConfigFilesRequest(
specified=self.config,
specified_option_name=f"[{self.options_scope}].config",
check_existence=["pyproject.toml"],
check_content={"pyproject.toml": b"[tool.vulture]"},
)
hundreds-father-404
08/01/2022, 9:44 PMcheck_existence
or check_content
for the same file at a timehundreds-father-404
08/01/2022, 9:44 PM[tool.vulture
without the final ]
, so that people can use [tool.venture.some_option]
careful-address-89803
08/01/2022, 9:49 PMhappy-kitchen-89482
08/01/2022, 9:49 PMpyproject.toml
in the repo root?careful-address-89803
08/01/2022, 9:50 PMcareful-address-89803
08/01/2022, 9:52 PMhundreds-father-404
08/01/2022, 9:52 PMhundreds-father-404
08/01/2022, 9:52 PM--config-discovery
so that users can turn it off if they don't like ithundreds-father-404
08/01/2022, 9:53 PMcareful-address-89803
08/01/2022, 9:54 PM```else look for candidate config files if
discovery is enabled```hey it even says so in the docs. thanks folks!