dotenv-linter

⚑️Lightning-fast linter for .env files. Written in Rust πŸ¦€

GitHub Actions Coverage Status License Releases

It checks .env files for problems that may cause the application to malfunction:

    βœ… Duplicated Key
    βœ… Ending Blank Line
    βœ… Extra Blank Line
    βœ… Incorrect delimiter
    βœ… Key without value
    βœ… Leading character
    βœ… Lowercase key
    βœ… Quote character
    βœ… Space character
    βœ… Trailing whitespace
    βœ… Unordered Key

And automatically fixes them all 😱

The key features:

    βš‘️ Lightning-fast because it is written in Rust πŸ¦€
    πŸ’£ Can be used on any project regardless of the programming language πŸ’₯
    πŸš€ Can be integrated with reviewdog and other CI services (including GitHub Actions) πŸ”₯

Articles about dotenv-linter: * In English * In Russian

Dotenv-linter is created & supported by Evrone. What else we develop with Rust.

πŸ‘¨β€πŸ’» Installation

Pre-compiled binary

```shell script

Linux / macOS / Windows (MINGW and etc). Installs it into ./bin/ by default

$ curl -sSfL https://raw.githubusercontent.com/dotenv-linter/dotenv-linter/master/install.sh | sh -s

Specify installation directory and version

$ curl -sSfL https://raw.githubusercontent.com/dotenv-linter/dotenv-linter/master/install.sh | sh -s -- -b usr/local/bin v2.0.0

Alpine Linux (wget)

$ wget -q -O - https://raw.githubusercontent.com/dotenv-linter/dotenv-linter/master/install.sh | sh -s ```

You can find other installation methods here: https://dotenv-linter.github.io/#/installation

πŸš€ Usage

By default, dotenv-linter checks all .env files in the current directory:

```shell script $ dotenv-linter .env:2 DuplicatedKey: The FOO key is duplicated .env:3 UnorderedKey: The BAR key should go before the FOO key .env.test:1 LeadingCharacter: Invalid leading character detected

Found 3 problems ```

It can also fix found warnings. You should use the argument --fix (or its short version -f) for this:

```shell script $ dotenv-linter -f Original file was backed up to: ".env_1601378896"

.env:2 DuplicatedKey: The BAR key is duplicated .env:3 LowercaseKey: The foo key should be in uppercase

All warnings are fixed. Total: 2 ```

Other use cases you can find here: https://dotenv-linter.github.io/#/usage

🚦 Continuous Integration

dotenv-linter can also be used with CI services such as: GitHub Actions and Circle CI.

🀝 Contributing

If you've ever wanted to contribute to open source, now you have a great opportunity:

πŸ‘ Similar projects

✨ Contributors

This project exists thanks to all the people who contribute. [Contribute].

β™₯️ Sponsors

Sponsored by Evrone

Become a financial contributor and help us sustain our community.

πŸ“ƒ License

MIT