add a log hint for mismatched brackets

This commit is contained in:
Brian Gough 2016-07-28 16:19:35 +01:00
parent 4d3b743e4d
commit 208798ebe3

View file

@ -93,6 +93,14 @@ define -> [
regexToMatch: /Error: `([^']{2,})' expected, found `([^']{2,})'.*/
newMessage: "Error: environment does not match \\begin{$1} ... \\end{$2}"
humanReadableHint: """
You have used \\begin{...} without a corresponding \\end{...}
You have used \\begin{...} without a corresponding \\end{...}.
"""
,
ruleId: "hint_mismatched_brackets"
regexToMatch: /Error: `([^a-zA-Z0-9])' expected, found `([^a-zA-Z0-9])'.*/
newMessage: "Error: brackets do not match, found '$2' instead of '$1'"
humanReadableHint: """
You have used an open bracket without a corresponding close bracket.
"""
]