From f8b15c7d4d762a363670aa0ef1c76d57ee61ea7c Mon Sep 17 00:00:00 2001 From: Allan Bowe <4420615+allanbowe@users.noreply.github.com> Date: Mon, 20 Feb 2023 14:15:22 +0000 Subject: [PATCH] fix: updating docs to force release --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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.