Skip to content

Commit

Permalink
chore(*): update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna-acondy committed Mar 29, 2021
1 parent 52b63ba commit 2ad4263
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions sasjslint-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"noSpacesInFileNames": true,
"lowerCaseFileNames": true,
"maxLineLength": 80,
"noTabIndentation": true
"noTabIndentation": true,
"indentationMultiple": 2
},
"examples": [
{
Expand All @@ -21,7 +22,8 @@
"noSpacesInFileNames": true,
"lowerCaseFileNames": true,
"maxLineLength": 80,
"noTabIndentation": true
"noTabIndentation": true,
"indentationMultiple": 4
}
],
"properties": {
Expand Down Expand Up @@ -80,6 +82,14 @@
"description": "Enforces no indentation using tabs. Shows a warning when a line starts with a tab.",
"default": true,
"examples": [true, false]
},
"indentationMultiple": {
"$id": "#/properties/indentationMultiple",
"type": "number",
"title": "indentationMultiple",
"description": "Enforces a configurable multiple for the number of spaces for indentation. Shows a warning for lines that are not indented by a multiple of this number.",
"default": 2,
"examples": [2, 3, 4]
}
}
}

0 comments on commit 2ad4263

Please sign in to comment.