doc(dotenv-linter): reword some sections

This commit is contained in:
AJ ONeal
2023-10-17 21:42:44 -06:00
parent 4c6d87740d
commit 21fc19d866
+17 -7
View File
@@ -25,9 +25,12 @@ install:
```
This will also attempt to install the
[Microsoft Visual C++ Redistributable](/vcruntime) via `webi vcruntime`. If it
fails and you get the error _`vcruntime140.dll` was not found_, you'll need to
[install it manually](https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170).
[Microsoft Visual C++ Redistributable](../vcruntime/) via `webi vcruntime`. If
it fails and you get the error _`vcruntime140.dll` was not found_, you'll need
to [install it manually](msvc-learn).
[msvc-learn]:
https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170
## Cheat Sheet
@@ -63,15 +66,22 @@ Use the `fix` subcommand.
dotenv-linter fix
```
Backup files in the format of `.env_0000000000` will be created by default. You
can use `--no-backup` to skip this.
Backup files in the format of `.env_0000000000` will be created by default. \
You can use `--no-backup` to skip this.
### How to compare two files
### How to compare keys between environements
Use the `compare` subcommand
```sh
dotenv-linter compare .env1 .env2
dotenv-linter compare ./my-dev.env ./my-prod.env
```
```text
Comparing my-dev.env
Comparing my-prod.env
my-dev.env is missing keys: FOO_API_TOKEN
my-prod.env is missing keys: BAR_ID, BAR_SECRET
```
### How to toggle linter rules