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

fix(schema): fix boolean field values in .sasjslint schema

This commit is contained in:
Krishna Acondy
2021-03-24 20:05:20 +00:00
parent 6c09745cc6
commit 1be358ca51

View File

@@ -24,32 +24,32 @@
"type": "boolean", "type": "boolean",
"title": "noTrailingSpaces", "title": "noTrailingSpaces",
"description": "Enforces no trailing spaces in lines of SAS code. Shows a warning when they are present.", "description": "Enforces no trailing spaces in lines of SAS code. Shows a warning when they are present.",
"default": "true", "default": true,
"examples": ["true", "false"] "examples": [true, false]
}, },
"noEncodedPasswords": { "noEncodedPasswords": {
"$id": "#/properties/noEncodedPasswords", "$id": "#/properties/noEncodedPasswords",
"type": "boolean", "type": "boolean",
"title": "noEncodedPasswords", "title": "noEncodedPasswords",
"description": "Enforces no encoded passwords such as {SAS001} or {SASENC} in lines of SAS code. Shows an error when they are present.", "description": "Enforces no encoded passwords such as {SAS001} or {SASENC} in lines of SAS code. Shows an error when they are present.",
"default": "true", "default": true,
"examples": ["true", "false"] "examples": [true, false]
}, },
"hasDoxygenHeader": { "hasDoxygenHeader": {
"$id": "#/properties/hasDoxygenHeader", "$id": "#/properties/hasDoxygenHeader",
"type": "boolean", "type": "boolean",
"title": "hasDoxygenHeader", "title": "hasDoxygenHeader",
"description": "Enforces the presence of a Doxygen header in the form of a comment block at the start of each SAS file. Shows a warning when one is absent.", "description": "Enforces the presence of a Doxygen header in the form of a comment block at the start of each SAS file. Shows a warning when one is absent.",
"default": "true", "default": true,
"examples": ["true", "false"] "examples": [true, false]
}, },
"noSpacesInFileNames": { "noSpacesInFileNames": {
"$id": "#/properties/noSpacesInFileNames", "$id": "#/properties/noSpacesInFileNames",
"type": "boolean", "type": "boolean",
"title": "noSpacesInFileNames", "title": "noSpacesInFileNames",
"description": "Enforces no spaces in file names. Shows a warning when they are present.", "description": "Enforces no spaces in file names. Shows a warning when they are present.",
"default": "true", "default": true,
"examples": ["true", "false"] "examples": [true, false]
} }
} }
} }