Skip to content

Commit 028dc6c

Browse files
committed
feat: license file gathering
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent a2da270 commit 028dc6c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/builders/license.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,14 @@ export class LicenseEvidenceFetcher {
5252
readonly #fs: FsUtils
5353
readonly #path: PathUtils
5454

55+
/* eslint-disable tsdoc/syntax -- we want to use the dot-syntax - https://github.com/microsoft/tsdoc/issues/19 */
5556
/**
5657
* `fs` and `path` can be supplied, if any compatibility-layer or drop-in replacement is used.
5758
*
5859
* @param options.fs - If omitted, the native `node:fs` is used.
5960
* @param options.path - If omitted, the native `node:path` is used.
6061
*/
62+
/* eslint-enable tsdoc/syntax */
6163
constructor(options: { fs?: FsUtils, path?: PathUtils } = {}) {
6264
/* eslint-disable @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-require-imports -- needed */
6365
this.#fs = options.fs ?? require('node:fs')

0 commit comments

Comments
 (0)