lint fixes

This commit is contained in:
eggyhead
2024-01-31 16:51:04 +00:00
parent 3b02a6fdc5
commit d134334a38
4 changed files with 28 additions and 28 deletions

View File

@@ -29,8 +29,9 @@ export function isGhes(): boolean {
)
const hostname = ghUrl.hostname.trimEnd().toUpperCase()
const isGitHubHost = (hostname == 'GITHUB.COM')
const isGheHost = (hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST'))
const isGitHubHost = hostname === 'GITHUB.COM'
const isGheHost =
hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST')
return !isGitHubHost && !isGheHost
}