We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
- repo: https://github.com/wemake-services/dotenv-linter rev: 0.4.0 # Use the ref you want to point at hooks: - id: dotenv-linter
DEFAULT_FROM_EMAIL='name [email protected]'
.env:3 301 Found quoted value
https://dotenv-linter.github.io/#/checks/quote_character
What's the right way?
The text was updated successfully, but these errors were encountered:
Instead of wrapping in quotes:
You need to use \ as an escape character for each character that would stop the shell from evaluating the line as a single string:
\
DEFAULT_FROM_EMAIL=name\ [email protected]
Sorry, something went wrong.
No branches or pull requests
config pre-commit:
- repo: https://github.com/wemake-services/dotenv-linter rev: 0.4.0 # Use the ref you want to point at hooks: - id: dotenv-linter
variable in env file:
DEFAULT_FROM_EMAIL='name [email protected]'
linter failed:
.env:3 301 Found quoted value
https://dotenv-linter.github.io/#/checks/quote_character
What's the right way?
The text was updated successfully, but these errors were encountered: