weareinreach / InReach

Useless template literal found JS-R1004
Anti-pattern
Minor
6 days agoa year old
Template string can be replaced with regular string literal
25	const githubPAT = process.env.GH_DATASTORE_PAT
26	if (!githubPAT) {
27		throw new Error(
28			`Missing 'GH_DATASTORE_PAT' environment variable.\nIf you need to generate a new one, visit https://github.com/settings/tokens\nThe token must be CLASSIC and not the newer 'fine-grained' variety. When selecting the scopes, the minimum required is 'repo'`29		)
30	}
31	const gh = new Octokit({ auth: githubPAT })