Formatting and Linting

Signed-off-by: Gregory Yogan <gregory.yogan@unity3d.com>
This commit is contained in:
Gregory Yogan
2021-08-27 11:42:02 -07:00
parent 19727d19b1
commit 1a446f0145
2 changed files with 3 additions and 2 deletions
@@ -124,7 +124,7 @@ export class GithubMultiOrgReaderProcessor implements CatalogProcessor {
`Read ${users.length} GitHub users and ${groups.length} GitHub teams from ${orgConfig.name} in ${duration} seconds`,
);
var prefix:string = orgConfig.userNamespace ?? '';
let prefix: string = orgConfig.userNamespace ?? '';
if (prefix.length > 0) prefix += '/';
users.forEach(u => {
@@ -112,7 +112,8 @@ describe('config', () => {
]);
});
it('defaults userNamespace to undefined if unspecified', () => { const output = readGithubMultiOrgConfig(
it('defaults userNamespace to undefined if unspecified', () => {
const output = readGithubMultiOrgConfig(
config([{ name: 'foo' }, { name: 'bar' }]),
);