diff --git a/README.md b/README.md index d4ac942..f4ad1ab 100644 --- a/README.md +++ b/README.md @@ -127,8 +127,17 @@ This will check each line to ensure that the count of leading spaces can be divi This setting ensures the line endings in a file to conform the configured type. Possible values are `lf`, `crlf` and `off` (off means rule is set to be off). If the value is missing, null or undefined then the check would also be switched off (no default applied). +- Default: "off" - Severity: WARNING +Example (to enforce unix line endings): + +```json +{ + "lineEndings": "lf" +} +``` + ### lowerCaseFileNames On *nix systems, it is imperative that autocall macros are in lowercase. When sharing code between windows and *nix systems, the difference in case sensitivity can also be a cause of lost developer time. For this reason, we recommend that sas filenames are always lowercase.