mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 06:20:12 +01:00
Update dependencies: browserify to 13.1.1, eslint to 3.8.1, glob to 7.1.1, istanbul to 0.4.5, nodeunit to 0.10.2, rimraf to 2.5.4, uglify-js to 2.7.4.
This commit is contained in:
parent
b2b874c6a0
commit
d40a3a55fd
2 changed files with 21 additions and 7 deletions
|
|
@ -44,6 +44,7 @@
|
||||||
"no-fallthrough": "error",
|
"no-fallthrough": "error",
|
||||||
"no-floating-decimal": "error",
|
"no-floating-decimal": "error",
|
||||||
"no-func-assign": "error",
|
"no-func-assign": "error",
|
||||||
|
"no-global-assign": "error",
|
||||||
"no-implicit-coercion": "off",
|
"no-implicit-coercion": "off",
|
||||||
"no-implicit-globals": "error",
|
"no-implicit-globals": "error",
|
||||||
"no-implied-eval": "error",
|
"no-implied-eval": "error",
|
||||||
|
|
@ -90,6 +91,7 @@
|
||||||
"no-restricted-globals": "error",
|
"no-restricted-globals": "error",
|
||||||
"no-restricted-imports": "error",
|
"no-restricted-imports": "error",
|
||||||
"no-restricted-modules": "error",
|
"no-restricted-modules": "error",
|
||||||
|
"no-restricted-properties": "error",
|
||||||
"no-restricted-syntax": "error",
|
"no-restricted-syntax": "error",
|
||||||
"no-return-assign": "error",
|
"no-return-assign": "error",
|
||||||
"no-script-url": "error",
|
"no-script-url": "error",
|
||||||
|
|
@ -102,6 +104,7 @@
|
||||||
"no-spaced-func": "error",
|
"no-spaced-func": "error",
|
||||||
"no-sparse-arrays": "error",
|
"no-sparse-arrays": "error",
|
||||||
"no-sync": "off",
|
"no-sync": "off",
|
||||||
|
"no-tabs": "error",
|
||||||
"no-ternary": "off",
|
"no-ternary": "off",
|
||||||
"no-trailing-spaces": "error",
|
"no-trailing-spaces": "error",
|
||||||
"no-this-before-super": "error",
|
"no-this-before-super": "error",
|
||||||
|
|
@ -115,6 +118,7 @@
|
||||||
"no-unneeded-ternary": "error",
|
"no-unneeded-ternary": "error",
|
||||||
"no-unreachable": "error",
|
"no-unreachable": "error",
|
||||||
"no-unsafe-finally": "error",
|
"no-unsafe-finally": "error",
|
||||||
|
"no-unsafe-negation": "error",
|
||||||
"no-unused-expressions": "error",
|
"no-unused-expressions": "error",
|
||||||
"no-unused-labels": "error",
|
"no-unused-labels": "error",
|
||||||
"no-unused-vars": "error",
|
"no-unused-vars": "error",
|
||||||
|
|
@ -140,6 +144,7 @@
|
||||||
"brace-style": "error",
|
"brace-style": "error",
|
||||||
"callback-return": "off",
|
"callback-return": "off",
|
||||||
"camelcase": "error",
|
"camelcase": "error",
|
||||||
|
"class-methods-use-this": "error",
|
||||||
"comma-dangle": "error",
|
"comma-dangle": "error",
|
||||||
"comma-spacing": "error",
|
"comma-spacing": "error",
|
||||||
"comma-style": "error",
|
"comma-style": "error",
|
||||||
|
|
@ -154,7 +159,9 @@
|
||||||
"dot-notation": "error",
|
"dot-notation": "error",
|
||||||
"eol-last": "error",
|
"eol-last": "error",
|
||||||
"eqeqeq": "error",
|
"eqeqeq": "error",
|
||||||
|
"func-call-spacing": "error",
|
||||||
"func-names": "error",
|
"func-names": "error",
|
||||||
|
"func-name-matching": "off",
|
||||||
"func-style": ["error", "declaration"],
|
"func-style": ["error", "declaration"],
|
||||||
"generator-star-spacing": "error",
|
"generator-star-spacing": "error",
|
||||||
"global-require": "off",
|
"global-require": "off",
|
||||||
|
|
@ -169,7 +176,9 @@
|
||||||
"key-spacing": "error",
|
"key-spacing": "error",
|
||||||
"keyword-spacing": "error",
|
"keyword-spacing": "error",
|
||||||
"linebreak-style": "off",
|
"linebreak-style": "off",
|
||||||
|
"line-comment-position": "error",
|
||||||
"lines-around-comment": "off",
|
"lines-around-comment": "off",
|
||||||
|
"lines-around-directive": "error",
|
||||||
"max-depth": "error",
|
"max-depth": "error",
|
||||||
"max-len": "error",
|
"max-len": "error",
|
||||||
"max-lines": "off",
|
"max-lines": "off",
|
||||||
|
|
@ -177,6 +186,7 @@
|
||||||
"max-params": ["error", 6],
|
"max-params": ["error", 6],
|
||||||
"max-statements": ["error", 26],
|
"max-statements": ["error", 26],
|
||||||
"max-statements-per-line": "error",
|
"max-statements-per-line": "error",
|
||||||
|
"multiline-ternary": "off",
|
||||||
"new-cap": "error",
|
"new-cap": "error",
|
||||||
"new-parens": "error",
|
"new-parens": "error",
|
||||||
"newline-after-var": "off",
|
"newline-after-var": "off",
|
||||||
|
|
@ -193,6 +203,7 @@
|
||||||
"padded-blocks": "off",
|
"padded-blocks": "off",
|
||||||
"prefer-arrow-callback": "off",
|
"prefer-arrow-callback": "off",
|
||||||
"prefer-const": "off",
|
"prefer-const": "off",
|
||||||
|
"prefer-numeric-literals": "error",
|
||||||
"prefer-reflect": "off",
|
"prefer-reflect": "off",
|
||||||
"prefer-rest-params": "off",
|
"prefer-rest-params": "off",
|
||||||
"prefer-spread": "off",
|
"prefer-spread": "off",
|
||||||
|
|
@ -205,6 +216,7 @@
|
||||||
"rest-spread-spacing": "error",
|
"rest-spread-spacing": "error",
|
||||||
"semi": "error",
|
"semi": "error",
|
||||||
"semi-spacing": "error",
|
"semi-spacing": "error",
|
||||||
|
"sort-keys": "off",
|
||||||
"sort-imports": "error",
|
"sort-imports": "error",
|
||||||
"sort-vars": "error",
|
"sort-vars": "error",
|
||||||
"space-before-blocks": "error",
|
"space-before-blocks": "error",
|
||||||
|
|
@ -214,6 +226,7 @@
|
||||||
"space-unary-ops": "error",
|
"space-unary-ops": "error",
|
||||||
"spaced-comment": "error",
|
"spaced-comment": "error",
|
||||||
"strict": "error",
|
"strict": "error",
|
||||||
|
"symbol-description": "error",
|
||||||
"template-curly-spacing": "error",
|
"template-curly-spacing": "error",
|
||||||
"unicode-bom": "error",
|
"unicode-bom": "error",
|
||||||
"use-isnan": "error",
|
"use-isnan": "error",
|
||||||
|
|
@ -222,6 +235,7 @@
|
||||||
"vars-on-top": "off",
|
"vars-on-top": "off",
|
||||||
"wrap-iife": "error",
|
"wrap-iife": "error",
|
||||||
"wrap-regex": "off",
|
"wrap-regex": "off",
|
||||||
|
"no-template-curly-in-string": "error",
|
||||||
"yield-star-spacing": "error",
|
"yield-star-spacing": "error",
|
||||||
"yoda": "error"
|
"yoda": "error"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
14
package.json
14
package.json
|
|
@ -26,16 +26,16 @@
|
||||||
"markdown-it": "^8.0.1"
|
"markdown-it": "^8.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"browserify": "^13.0.1",
|
"browserify": "^13.1.1",
|
||||||
"cpy-cli": "^1.0.1",
|
"cpy-cli": "^1.0.1",
|
||||||
"eslint": "^3.0.1",
|
"eslint": "^3.8.1",
|
||||||
"glob": "^7.0.5",
|
"glob": "^7.1.1",
|
||||||
"istanbul": "^0.4.4",
|
"istanbul": "^0.4.5",
|
||||||
"nodeunit": "^0.9.1",
|
"nodeunit": "^0.10.2",
|
||||||
"q": "^1.4.1",
|
"q": "^1.4.1",
|
||||||
"rimraf": "^2.5.3",
|
"rimraf": "^2.5.4",
|
||||||
"tv4": "^1.2.7",
|
"tv4": "^1.2.7",
|
||||||
"uglify-js": "^2.7.0"
|
"uglify-js": "^2.7.4"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"markdown",
|
"markdown",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue