mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-06-02 22:01:43 +02:00
Fix all 93 ESLint issues (3 errors, 90 warnings) (#666)
This commit is contained in:
+2
-2
@@ -80,8 +80,8 @@ const config: Config = {
|
||||
};
|
||||
|
||||
for (const conf in process.env) {
|
||||
if ((config as any)[conf] !== undefined) {
|
||||
(config as any)[conf] = process.env[conf];
|
||||
if ((config as unknown as Record<string, unknown>)[conf] !== undefined) {
|
||||
(config as unknown as Record<string, string | undefined>)[conf] = process.env[conf];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user