Skip to content

Commit

Permalink
Style: remove eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JPeer264 committed May 12, 2020
1 parent 818401c commit 265c6c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
File renamed without changes.
5 changes: 4 additions & 1 deletion lib/process/processSync.ts
Expand Up @@ -36,7 +36,10 @@ function processSync(type: any, pathString: string | string[], opts: any = {}):
globString = pathString;
}

const globArray = glob.sync(globString, { cwd: options.cwd, ignore: Config.getInstance().ignorePatterns });
const globArray = glob.sync(globString, {
cwd: options.cwd,
ignore: Config.getInstance().ignorePatterns,
});
const cssHtmlFiles = globArray.filter((file) => (
fileExt.css.includes(path.extname(file))
|| fileExt.html.includes(path.extname(file))
Expand Down
1 change: 0 additions & 1 deletion lib/process/replaceData.ts
@@ -1,4 +1,3 @@
import merge from 'lodash.merge';
import rcs from 'rcs-core';
import path from 'path';

Expand Down

0 comments on commit 265c6c8

Please sign in to comment.