Skip to content

Commit a6cf1d9

Browse files
Disable ubproject.toml warning on diff (#381)
1 parent 4b8ddcd commit a6cf1d9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/extensions/score_sync_toml/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def setup(app: Sphinx) -> dict[str, str | bool]:
3434
app.config.needscfg_exclude_defaults = True
3535
"""Exclude default values from the generated configuration."""
3636

37-
app.config.needscfg_warn_on_diff = True
37+
# This is disabled for right now as it causes a lot of issues
38+
# While we are not using the generated file anywhere
39+
app.config.needscfg_warn_on_diff = False
3840
"""Running Sphinx with -W will fail the CI for uncommitted TOML changes."""
3941

4042
app.config.needscfg_merge_toml_files = [

0 commit comments

Comments
 (0)