Skip to content

Commit

Permalink
added groups node to tslint configuration (#676)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattEllison authored and madskristensen committed Apr 25, 2019
1 parent 43578cb commit 5e59df4
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions src/schemas/json/tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3093,6 +3093,27 @@
"grouped-imports": {
"type": "boolean"
},
"groups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"match": {
"type": "string"
},
"order": {
"type": "number"
}
},
"required": [
"match",
"order"
]
}
},
"import-sources-order": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -5230,7 +5251,8 @@
},
{
"$ref": "#/definitions/tsRules/properties/prefer-readonly/definitions/options/items"
}]
}
]
},
"severity": {}
},
Expand Down Expand Up @@ -5628,7 +5650,7 @@
"type": "string"
}
}
}
}
}
}
}
}

0 comments on commit 5e59df4

Please sign in to comment.