--- ruleName: linebreak-style description: Enforces a consistent linebreak style. optionsDescription: |- One of the following options must be provided: * `"LF"` requires LF (`\n`) linebreaks * `"CRLF"` requires CRLF (`\r\n`) linebreaks options: type: string enum: - LF - CRLF optionExamples: - '[true, "LF"]' - '[true, "CRLF"]' type: maintainability optionsJSON: |- { "type": "string", "enum": [ "LF", "CRLF" ] } layout: rule title: 'Rule: linebreak-style' ---