You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a .env file has been set up with a PGUSERNAME, PGPASSWORD, PGHOST or PGDATABASE which include special characters that are invalid for usage in a URL, the SafeQL configuration value for databaseUrl that we use (which includes interpolation) will cause unusual problems:
If a
.env
file has been set up with aPGUSERNAME
,PGPASSWORD
,PGHOST
orPGDATABASE
which include special characters that are invalid for usage in a URL, the SafeQL configuration value fordatabaseUrl
that we use (which includes interpolation) will cause unusual problems:eslint-config-upleveled/index.cjs
Lines 392 to 404 in 29d38f0
Running ESLint or Preflight in such a project will lead to error messages such as
TypeError [ERR_INVALID_URL]: Invalid URL
:We could escape the special characters in these values to avoid these types of errors with the interpolation.
TODOs:
The text was updated successfully, but these errors were encountered: