mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 22:40:13 +01:00
Address new lint warnings from previous commit.
This commit is contained in:
parent
9020557389
commit
c81101d2b1
3 changed files with 4 additions and 4 deletions
|
|
@ -650,7 +650,7 @@ function lintContent(
|
|||
// Synchronous rule
|
||||
try {
|
||||
invokeRuleFunction();
|
||||
} catch (error) {
|
||||
} catch(error) {
|
||||
if (handleRuleFailures) {
|
||||
catchCallsOnError(error);
|
||||
} else {
|
||||
|
|
@ -721,7 +721,7 @@ function lintContent(
|
|||
} else {
|
||||
callbackSuccess();
|
||||
}
|
||||
} catch (error) {
|
||||
} catch(error) {
|
||||
callbackError(error);
|
||||
} finally {
|
||||
cacheInitialize();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue