1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-07 12:40:05 +00:00

chore: updated sasjslint-schema.json

This commit is contained in:
Saad Jutt
2021-05-20 19:22:08 +05:00
parent dcfeb7a641
commit b4ec32b72c

View File

@@ -16,7 +16,8 @@
"noSpacesInFileNames": true, "noSpacesInFileNames": true,
"noTabIndentation": true, "noTabIndentation": true,
"noTrailingSpaces": true, "noTrailingSpaces": true,
"lineEndings": "lf" "lineEndings": "lf",
"strictMacroDefinition": true
}, },
"examples": [ "examples": [
{ {
@@ -31,7 +32,8 @@
"hasMacroNameInMend": true, "hasMacroNameInMend": true,
"noNestedMacros": true, "noNestedMacros": true,
"hasMacroParentheses": true, "hasMacroParentheses": true,
"lineEndings": "crlf" "lineEndings": "crlf",
"strictMacroDefinition": true
} }
], ],
"properties": { "properties": {
@@ -130,6 +132,14 @@
"description": "Enforces the configured terminating character for each line. Shows a warning when incorrect line endings are present.", "description": "Enforces the configured terminating character for each line. Shows a warning when incorrect line endings are present.",
"default": "lf", "default": "lf",
"examples": ["lf", "crlf"] "examples": ["lf", "crlf"]
},
"strictMacroDefinition": {
"$id": "#/properties/strictMacroDefinition",
"type": "boolean",
"title": "strictMacroDefinition",
"description": "Enforces Macro Definition syntax. Shows a warning when incorrect syntax is used.",
"default": true,
"examples": [true, false]
} }
} }
} }