Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 89839d4

Browse files
author
Alan Shaw
committed
docs: added jsdocs for options for glob-source.js
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 200e4fb commit 89839d4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/utils/files/glob-source.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ const errCode = require('err-code')
1818
*
1919
* @param ...paths {String} File system path(s) to glob from
2020
* @param [options] {Object} Optional options
21-
* @param [options.recursive] Recursively glob all paths in directories
21+
* @param [options.recursive] {Boolean} Recursively glob all paths in directories
22+
* @param [options.hidden] {Boolean} Include .dot files in matched paths
23+
* @param [options.ignore] {Array<String>} Glob paths to ignore
24+
* @param [options.followSymlinks] {Boolean} follow symlinks
2225
*/
2326
module.exports = (...args) => {
2427
const options = isString(args[args.length - 1]) ? {} : args.pop()

0 commit comments

Comments
 (0)