Skip to content

Commit 5ab54ec

Browse files
committed
fix: fix eslint error
1 parent 1f2abd4 commit 5ab54ec

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

jsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
{
22
"compilerOptions": {
33
"checkJs": true,
4+
"target": "es2015",
45
},
56
"exclude": [
67
"node_modules",
7-
".nyc_output"
8+
".nyc_output",
9+
".idea",
10+
".vscode",
11+
".github",
12+
".husky",
13+
"docs",
814
]
915
}

lib/utils/utility.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const not = (x) => !x;
5656
* Callback for file path
5757
*
5858
* @callback callback
59-
* @param {string} p file path
59+
* @param {unknown} p
6060
*/
6161
/**
6262
* @returns {callback} piped function

0 commit comments

Comments
 (0)