From 9eee32cd85b0986aa954254c53713f995dc3ce60 Mon Sep 17 00:00:00 2001 From: vvo Date: Tue, 5 Jan 2016 17:05:19 +0100 Subject: [PATCH] fix(lint): fix cli quotes linting was failing --- cli.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli.js b/cli.js index 34c61f2e..449af786 100644 --- a/cli.js +++ b/cli.js @@ -317,7 +317,7 @@ function resolvePluginPaths(paths) { // convoluted way to detect the correct path for the plugins; done this round-about way to cope // with scenarios where JSDoc is executed in another project's working directory where that // project has plugins of itself in a similar directory structure (plugins/*) - var pluginPath = path.getResourcePath(dirname, basename + ".js"); + var pluginPath = path.getResourcePath(dirname, basename + '.js'); if (!pluginPath) { logger.error('Unable to find the plugin "%s"', plugin); @@ -419,7 +419,7 @@ cli.generateDocs = function() { // convoluted way to detect the correct path for the templates; done this round-about way to cope // with scenarios where JSDoc is executed in another project's working directory where that // project has templates of itself in a similar directory structure (templates//) - var templatePath = path.getResourcePath(publish, "publish.js"); + var templatePath = path.getResourcePath(publish, 'publish.js'); if (!templatePath) { logger.error('Unable to find the template "%s"', publish);