Skip to content

Commit

Permalink
fix(schema): fix boolean field values in .sasjslint schema
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna-acondy committed Mar 24, 2021
1 parent 6c09745 commit 1be358c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions sasjslint-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,32 +24,32 @@
"type": "boolean",
"title": "noTrailingSpaces",
"description": "Enforces no trailing spaces in lines of SAS code. Shows a warning when they are present.",
"default": "true",
"examples": ["true", "false"]
"default": true,
"examples": [true, false]
},
"noEncodedPasswords": {
"$id": "#/properties/noEncodedPasswords",
"type": "boolean",
"title": "noEncodedPasswords",
"description": "Enforces no encoded passwords such as {SAS001} or {SASENC} in lines of SAS code. Shows an error when they are present.",
"default": "true",
"examples": ["true", "false"]
"default": true,
"examples": [true, false]
},
"hasDoxygenHeader": {
"$id": "#/properties/hasDoxygenHeader",
"type": "boolean",
"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.",
"default": "true",
"examples": ["true", "false"]
"default": true,
"examples": [true, false]
},
"noSpacesInFileNames": {
"$id": "#/properties/noSpacesInFileNames",
"type": "boolean",
"title": "noSpacesInFileNames",
"description": "Enforces no spaces in file names. Shows a warning when they are present.",
"default": "true",
"examples": ["true", "false"]
"default": true,
"examples": [true, false]
}
}
}

0 comments on commit 1be358c

Please sign in to comment.