Skip to content

Z110: CONFIG_SYNTAX_ERROR

Severity: error Penalty: Fatal Configuration Error (Analysis Bypassed) Category: configuration Auto-fixable: No Suppression: Non-suppressible

Description

The .zenzic.toml (or pyproject.toml) workspace configuration file contains a malformed TOML syntax error.

When a configuration file is syntactically invalid, Zenzic halts Markdown document analysis to prevent cascading false positives or running with corrupted governance policies.

How to Fix

Fix the TOML syntax error in .zenzic.toml indicated in the diagnostic message (such as missing quotes, unclosed brackets, or unescaped characters).

Example Error

# Malformed TOML
placeholder_max_words = [ 50,

Corrected .zenzic.toml:

placeholder_max_words = 50

Reference

See the Finding Codes Index for finding code details.