Add support for ignore_missing_files
global option in configuration file
#145
Labels
feature-request
New feature or request
0.18.1
3.12.2
Description
Following up on the new
--ignore-missing-files
feature (see #38 and #138), I can confirm it works well. To make it even more flexible, it would be nice to have a correspondingignore_missing_files
option available in the configuration file.What I Did
Given this
pyproject.toml
file in an empty directory:A call to a
bump
action fails as expected because there is no./citation.cff
file in sight:Using the new
--ignore-missing-files
parameter help the missing file to be ignored, as intended:Now I would like to transfer the inline
--ignore-missing-files
parameter to the config file. So I update thepyproject.toml
file to:And I expected the CLI to be able to take my new
ignore_missing_files = true
configuration into account, but it does not, leading to the same issue as if--ignore-missing-files
parameter wasn't passed to the CLI:The text was updated successfully, but these errors were encountered: