UNPKG

curated-linter

Version:
11 lines (8 loc) 276 B
const clone = require('clone') const lintTextPkg = require('lint-text') const lintText = function (text, config = {}) { return this .getMergedConfig(config) .then(mergedConfig => lintTextPkg(clone(mergedConfig.CLIEngineOptions), text)) } module.exports = lintText