Skip to content

Commit 469bf94

Browse files
committed
fixed linting
1 parent b4d9b51 commit 469bf94

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/__testing__/mock/file-mock.utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { MockConstants, FileMockConstants, DirMockConstants } from './constants'
33
import { AngularJson } from '../../angular';
44
import { CPUtilities, FsUtilities, JsonUtilities } from '../../encapsulation';
55
import { EnvUtilities } from '../../env';
6-
import { WorkspaceUtilities } from '../../workspace';
76
import { getPath } from '../../utilities';
7+
import { WorkspaceUtilities } from '../../workspace';
88

99
export abstract class FileMockUtilities {
1010

src/utilities/get-path.function.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ import path from 'path';
33
import { CPUtilities } from '../encapsulation';
44

55
/**
6-
*
6+
* The type for a file path.
77
*/
88
export type Path = string & {
9-
/**
10-
*
11-
*/
12-
__brand: 'Path' };
9+
// eslint-disable-next-line jsdoc/require-jsdoc
10+
__brand: 'Path'
11+
};
1312

1413
/**
1514
* Gets a os agnostic path by joining the given parts.

0 commit comments

Comments
 (0)