Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffen van Bergerem committed Sep 18, 2016
1 parent 948c01d commit 1ac552a
Show file tree
Hide file tree
Showing 8 changed files with 1,199 additions and 949 deletions.
11 changes: 11 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"no-fallthrough": "error",
"no-floating-decimal": "error",
"no-func-assign": "error",
"no-global-assign": "error",
"no-implicit-coercion": "error",
"no-implicit-globals": "error",
"no-implied-eval": "error",
Expand Down Expand Up @@ -91,6 +92,7 @@
"no-restricted-globals": "off",
"no-restricted-imports": "off",
"no-restricted-modules": "off",
"no-restricted-properties": "off",
"no-restricted-syntax": "off",
"no-return-assign": "error",
"no-script-url": "error",
Expand All @@ -117,6 +119,7 @@
"no-unneeded-ternary": "error",
"no-unreachable": "error",
"no-unsafe-finally": "error",
"no-unsafe-negation": "error",
"no-unused-expressions": "error",
"no-unused-labels": "error",
"no-unused-vars": "error",
Expand All @@ -142,6 +145,7 @@
"brace-style": "error",
"callback-return": "off",
"camelcase": "error",
"class-methods-use-this": "error",
"comma-dangle": "error",
"comma-spacing": "error",
"comma-style": "error",
Expand All @@ -156,6 +160,7 @@
"dot-notation": "error",
"eol-last": "error",
"eqeqeq": "error",
"func-call-spacing": ["error", "never"],
"func-names": "off",
"func-style": "off",
"generator-star-spacing": "off",
Expand All @@ -171,7 +176,9 @@
"key-spacing": "error",
"keyword-spacing": "error",
"linebreak-style": "off",
"line-comment-position": "off",
"lines-around-comment": "off",
"lines-around-directive": ["error", "always"],
"max-depth": "off",
"max-len": ["warn", 120],
"max-lines": "off",
Expand All @@ -196,6 +203,7 @@
"padded-blocks": ["error", "never"],
"prefer-arrow-callback": "off",
"prefer-const": "off",
"prefer-numeric-literals": "error",
"prefer-reflect": "off",
"prefer-rest-params": "off",
"prefer-spread": "off",
Expand All @@ -208,6 +216,7 @@
"rest-spread-spacing": "off",
"semi": "error",
"semi-spacing": "error",
"sort-keys": "off",
"sort-imports": "off",
"sort-vars": "off",
"space-before-blocks": "error",
Expand All @@ -217,6 +226,7 @@
"space-unary-ops": "error",
"spaced-comment": "error",
"strict": ["error", "never"],
"symbol-description": "off",
"template-curly-spacing": "error",
"unicode-bom": "error",
"use-isnan": "error",
Expand All @@ -225,6 +235,7 @@
"vars-on-top": "error",
"wrap-iife": "off",
"wrap-regex": "off",
"no-template-curly-in-string": "warn",
"yield-star-spacing": "off",
"yoda": "error"
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
"test": "make test"
},
"devDependencies": {
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.2.2",
"eslint": "^3.5.0",
"istanbul": "*",
"markdown-it": "~7.0.0",
"markdown-it": "~8.0.0",
"markdown-it-testgen": "~0.1.4",
"mocha": "^3.0.2",
"uglify-js": "^2.7.0"
Expand Down
20 changes: 20 additions & 0 deletions test/fixtures/vendor/commonmark/bad.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src line: 410

.
> foo
.
<blockquote>
<pre><code> foo
</code></pre>
</blockquote>
.

error:

<blockquote>
<pre><code> foo
</code></pre>
</blockquote>


0 comments on commit 1ac552a

Please sign in to comment.