Skip to content

Commit 265c6c8

Browse files
committed
Style: remove eslint errors
1 parent 818401c commit 265c6c8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
File renamed without changes.

lib/process/processSync.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ function processSync(type: any, pathString: string | string[], opts: any = {}):
3636
globString = pathString;
3737
}
3838

39-
const globArray = glob.sync(globString, { cwd: options.cwd, ignore: Config.getInstance().ignorePatterns });
39+
const globArray = glob.sync(globString, {
40+
cwd: options.cwd,
41+
ignore: Config.getInstance().ignorePatterns,
42+
});
4043
const cssHtmlFiles = globArray.filter((file) => (
4144
fileExt.css.includes(path.extname(file))
4245
|| fileExt.html.includes(path.extname(file))

lib/process/replaceData.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import merge from 'lodash.merge';
21
import rcs from 'rcs-core';
32
import path from 'path';
43

0 commit comments

Comments
 (0)