When using .env files to store API credential, is it better to store them as strings with quotation marks or as unquoted? Are there any differences between the two? For example, I have the following firebase service account credentials in my .env file, which way is better?:
type="service_account"
project_id="asdfghj"
private_key_id="1234567890"
or
type=service_account
project_id=asdfghj
private_key_id=1234567890