Invalid YAML Syntax
▼This error occurs when the configuration file contains malformed YAML.
Typical causes:
- Incorrect indentation (mixing spaces and tabs)
- Missing colons or quotes
- Using reserved keywords as keys
Example of a broken snippet:
database:
host: "localhost"
port 5432 # missing colon
user: admin
password: secret # extra indentation
Fix:
database: host: "localhost" port: 5432 user: admin password: secret