Linting dotenv files like a charm!
Project description
dotenv-linter
Simple linter for .env
files.
While .env
files are very simple it is required to keep them consistent.
This tool offers a wide range of consistency rules and best practices.
And it integrates perfectly to any existing workflow.
Read the announcing post.
Installation and usage
pip install dotenv-linter
And then run it:
dotenv-linter .env .env.template
See Usage section for more information.
Examples
There are many things that can go wrong in your .env
files:
# Next line has leading space which will be removed:
SPACED=
# Equal signs should not be spaced:
KEY = VALUE
# Quotes won't be preserved after parsing, do not use them:
SECRET="my value"
# Beware of duplicate keys!
SECRET=Already defined ;(
# Respect the convention, use `UPPER_CASE`:
kebab-case-name=1
snake_case_name=2
And much more! You can find the full list of violations in our docs.
Pre-commit hooks
dotenv-linter
can also be used as a pre-commit hook.
To do so, add the following to the .pre-commit-config.yaml
file at the root of your project:
repos:
- repo: https://github.com/wemake-services/dotenv-linter
rev: 0.2.0 # Use the ref you want to point at
hooks:
- id: dotenv-linter
For the more detailed instructions on the pre-commit tool itself, please refer to its website.
Gratis
Special thanks goes to Ignacio Toledo for creating an awesome logo for the project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dotenv-linter-0.3.0.tar.gz
.
File metadata
- Download URL: dotenv-linter-0.3.0.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.9 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cb053be76575d54915607587f26cc51844fe14a803a7a5a1c9ceb5bf78ea595 |
|
MD5 | b82bc90b31b920b2efdd888b22dd2fd7 |
|
BLAKE2b-256 | e2b55a8002a854eec226fc2334b25e6504520de6943d3f7c02ee940e4db8f774 |
File details
Details for the file dotenv_linter-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: dotenv_linter-0.3.0-py3-none-any.whl
- Upload date:
- Size: 22.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.9 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f0681edc4a7518ec7b3731384c8589db6a5f6839d9466bbeadaa614c6a2981a |
|
MD5 | 12ca178530113c2611166bfff11646a4 |
|
BLAKE2b-256 | fed664daf072b405240e252f54de32e95fb1ea637ce751c032858d1622d7c46f |