Update eslint dependency to 1.5.1, update code for new rules.

This commit is contained in:
David Anson 2015-09-26 22:22:22 -07:00
parent bf07e3b845
commit 7af794bb21
5 changed files with 46 additions and 39 deletions

View file

@ -114,7 +114,7 @@
markdown.addEventListener("input", onMarkdownInput);
violations.addEventListener("click", onLineNumberClick, true);
/*eslint-disable max-len */
/* eslint-disable max-len */
markdown.value = [
"## Introduction",
"",
@ -140,6 +140,6 @@
"",
"[`markdownlint/Ruby`](https://github.com/mivok/markdownlint) for the inspiration and [`markdown-it`](https://github.com/markdown-it/markdown-it) for the parser and interactive demo idea!"
].join("\n");
/*eslint-enable max-len */
/* eslint-enable max-len */
onMarkdownInput();
}());