Context
This issue tracks the yamllint configuration change to set allow-non-breakable-words: true in the line-length rule. This change is necessary because clp-config.yaml contains long URLs that would fail the yamllint check with the current setting.
Background
While working on PR #1681 (support for external third-party services configuration), it was identified that the yamllint allow-non-breakable-words setting needs to be changed from false to true to accommodate long URLs in configuration files.
Related
Proposed Change
In .yamllint.yaml:
line-length:
max: 100
allow-non-breakable-words: true # Changed from false
Context
This issue tracks the yamllint configuration change to set
allow-non-breakable-words: truein theline-lengthrule. This change is necessary becauseclp-config.yamlcontains long URLs that would fail the yamllint check with the current setting.Background
While working on PR #1681 (support for external third-party services configuration), it was identified that the yamllint
allow-non-breakable-wordssetting needs to be changed fromfalsetotrueto accommodate long URLs in configuration files.Related
Proposed Change
In
.yamllint.yaml: