Skip to content

Commit 680a7b2

Browse files
authored
Merge pull request #56 from dotenv-linter/release-v330
Release v3.3.0
2 parents 66d2ba6 + bae45ac commit 680a7b2

16 files changed

+111
-40
lines changed

docs/_sidebar.md

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,44 @@
1-
* [💡What's a .env file?](whats_env.md)
2-
* [👨‍💻Installation](installation.md)
1+
* [💡 What's a .env file?](whats_env.md)
2+
* [👨‍💻 Installation](installation.md)
33

4-
* 🎉What's new?
5-
* [v3.2.0 (latest)](whats_new/v320.md)
4+
* 🎉 What's new?
5+
* [v3.3.0 (latest)](whats_new/v330.md)
6+
* [v3.2.0](whats_new/v320.md)
67
* [v3.1.1](whats_new/v311.md)
78
* [v3.1.0](whats_new/v310.md)
89
* [v3.0.0](whats_new/v300.md)
910
* [v2.2.1](whats_new/v221.md)
1011
* [v2.2.0](whats_new/v2_2_0.md)
1112

12-
* 🚀Usage
13-
* [✅Check](usage/check.md)
14-
* [🤲Compare](usage/compare.md)
15-
* [🛠Fix](usage/fix.md)
16-
* [📄List](usage/list.md)
13+
* 🚀 Usage
14+
* [ Check](usage/check.md)
15+
* [🤲 Compare](usage/compare.md)
16+
* [🛠 Fix](usage/fix.md)
17+
* [📄 List](usage/list.md)
1718

18-
* ✅Checks
19-
* [Duplicated Key](checks/duplicated_key.md)
20-
* [Ending Blank Line](checks/ending_blank_line.md)
21-
* [Extra Blank Line](checks/extra_blank_line.md)
22-
* [Incorrect Delimiter](checks/incorrect_delimiter.md)
23-
* [Key Without Value](checks/key_without_value.md)
24-
* [Leading Character](checks/leading_character.md)
25-
* [Lowercase Key](checks/lowercase_key.md)
26-
* [Quote Character](checks/quote_character.md)
27-
* [Space Character](checks/space_character.md)
28-
* [Substitution Key](checks/substitution_key.md)
19+
* Checks
20+
* [Duplicated key](checks/duplicated_key.md)
21+
* [Ending blank line](checks/ending_blank_line.md)
22+
* [Extra blank line](checks/extra_blank_line.md)
23+
* [Incorrect delimiter](checks/incorrect_delimiter.md)
24+
* [Key without value](checks/key_without_value.md)
25+
* [Leading character](checks/leading_character.md)
26+
* [Lowercase key](checks/lowercase_key.md)
27+
* [Quote character](checks/quote_character.md)
28+
* [Space character](checks/space_character.md)
29+
* [Substitution key](checks/substitution_key.md)
2930
* [Trailing whitespace](checks/trailing_whitespace.md)
30-
* [Unordered Key](checks/unordered_key.md)
31+
* [Unordered key](checks/unordered_key.md)
32+
* [Value without quotes](checks/value_without_quotes.md)
3133

32-
* 🔄Integrations
34+
* 🔄 Integrations
3335
* [CircleCI](integrations/circleci.md)
3436
* [GitHub Actions](integrations/github_actions.md)
3537
* [Mega-Linter](integrations/mega_linter.md)
3638
* [Reviewdog](integrations/reviewdog.md)
3739
* [Super-Linter](integrations/super_linter.md)
3840

39-
* [🚧Benchmark](benchmark.md)
40-
* [️Mentorship](mentorship.md)
41-
* [🤝Contributing](contributing.md)
42-
* [️Sponsors](sponsors.md)
41+
* [🚧 Benchmark](benchmark.md)
42+
* [️ Mentorship](mentorship.md)
43+
* [🤝 Contributing](contributing.md)
44+
* [️ Sponsors](sponsors.md)

docs/checks/duplicated_key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Duplicated Key
1+
# Duplicated key
22

33
Detects if a key is not unique:
44

docs/checks/ending_blank_line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ending Blank Line
1+
# Ending blank line
22

33
Detects if a file doesn't have a blank line at the end:
44

docs/checks/extra_blank_line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Extra Blank Line
1+
# Extra blank line
22

33
Detects if a file contains more than one blank line in a row:
44

docs/checks/incorrect_delimiter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Incorrect Delimiter
1+
# Incorrect delimiter
22

33
Detects if a key does not use an underscore to separate words:
44

docs/checks/key_without_value.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Key Without Value
1+
# Key without value
22

33
Detects if a line has a key without a value:
44

docs/checks/leading_character.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Leading Character
1+
# Leading character
22

33
Detects if a line starts with an unallowed character (characters from `A` to `Z` and `_` (underscore) are allowed):
44

docs/checks/lowercase_key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Lowercase Key
1+
# Lowercase key
22

33
Detects if a key has lowercase characters:
44

docs/checks/quote_character.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Quote Character
1+
# Quote character
22

33
Detects if a value contains quote characters (`'` / `"`) but skips if the value is multi-line, contains whitespaces, newline characters or hash-signs:
44

docs/checks/space_character.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Space Character
1+
# Space character
22

3-
Detects lines with a whitespace around equal sign character `=`:
3+
Detects a line with a whitespace around equal sign character `=`:
44

55
```env
66
❌ Wrong

0 commit comments

Comments
 (0)