markuplint
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -5,4 +5,7 @@ "use strict"; | ||
const path = require("path"); | ||
const util = require("util"); | ||
const exists = util.promisify(fs.exists); | ||
const exists = (p) => { | ||
return new Promise((r, e) => { | ||
fs.exists(p, r); | ||
}); | ||
}; | ||
async function fileSearch(fileList, dir) { | ||
@@ -9,0 +12,0 @@ const notfoundFiles = []; |
{ | ||
"name": "markuplint", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "HTML linter for legacy/modern HTML, Web Components, SVG, MathML, AMP HTML and more.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -8,3 +8,3 @@ { | ||
"name": "dir", | ||
"description": "Text direction in this element. Possible values are:\n \n ltr: Indicates that the text should go in a left-to-right direction.\n rtl: Indicates that the text should go in a right-to-left direction.\n \n " | ||
"description": "The direction in which text should be rendered in this element's contents. Possible values are:\n \n ltr: Indicates that the text should go in a left-to-right direction.\n rtl: Indicates that the text should go in a right-to-left direction.\n \n " | ||
} | ||
@@ -11,0 +11,0 @@ ], |
299020
6975