1
0
mirror of https://github.com/sasjs/lint.git synced 2025-12-10 17:34:36 +00:00

fix: updated sasjslint-schema.json

This commit is contained in:
2022-11-08 19:43:18 +05:00
parent c210699954
commit debeff7929

View File

@@ -7,6 +7,7 @@
"default": {
"noEncodedPasswords": true,
"hasDoxygenHeader": true,
"defaultHeader": "/**{lineEnding} @file{lineEnding} @brief <Your brief here>{lineEnding} <h4> SAS Macros </h4>{lineEnding}**/",
"hasMacroNameInMend": false,
"hasMacroParentheses": true,
"indentationMultiple": 2,
@@ -18,10 +19,7 @@
"noTrailingSpaces": true,
"lineEndings": "lf",
"strictMacroDefinition": true,
"ignoreList": [
"sajsbuild",
"sasjsresults"
]
"ignoreList": ["sajsbuild", "sasjsresults"]
},
"examples": [
{
@@ -58,6 +56,14 @@
"default": true,
"examples": [true, false]
},
"defaultHeader": {
"$id": "#/properties/defaultHeader",
"type": "boolean",
"title": "defaultHeader",
"description": "This sets the default program header - applies when a SAS program does NOT begin with `/**`.",
"default": "/**{lineEnding} @file{lineEnding} @brief <Your brief here>{lineEnding} <h4> SAS Macros </h4>{lineEnding}**/",
"examples": []
},
"hasMacroNameInMend": {
"$id": "#/properties/hasMacroNameInMend",
"type": "boolean",