File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff 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' )
You can’t perform that action at this time.
0 commit comments