1
0
mirror of https://github.com/sasjs/lint.git synced 2025-12-10 17:34:36 +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,
"noTabIndentation": true,
"noTrailingSpaces": true,
"lineEndings": "lf"
"lineEndings": "lf",
"strictMacroDefinition": true
},
"examples": [
{
@@ -31,7 +32,8 @@
"hasMacroNameInMend": true,
"noNestedMacros": true,
"hasMacroParentheses": true,
"lineEndings": "crlf"
"lineEndings": "crlf",
"strictMacroDefinition": true
}
],
"properties": {
@@ -130,6 +132,14 @@
"description": "Enforces the configured terminating character for each line. Shows a warning when incorrect line endings are present.",
"default": "lf",
"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]
}
}
}