-
-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 1. Added [EditorConfig](https://editorconfig.org/) 1. Fixed the text formatting in the README * 1. Fixed the text formatting in the README * 1. Partially rolled back text formatting edits in README - GitHub does not work correctly with formatting * Added EditorConfig linter in GitHub Actions * Fixed the code based on comments from the EditorConfig linter * Replaced the linter and corrected the comments from the new linter * Revert EditorConfig linter * Fixer review comments * Fixed review comments * Fixed review comments
- Loading branch information
Showing
10 changed files
with
98 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
max_line_length = 120 | ||
|
||
[{go.mod,go.sum,*.go}] | ||
insert_final_newline = true | ||
indent_size = tab | ||
indent_style = tab | ||
tab_width = 4 | ||
|
||
[Makefile] | ||
max_line_length = off | ||
insert_final_newline = true | ||
indent_size = tab | ||
indent_style = tab | ||
tab_width = 4 | ||
|
||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false | ||
indent_size = tab | ||
indent_style = space | ||
tab_width = 2 | ||
|
||
[.mailmap] | ||
max_line_length = off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
module github.com/caarlos0/env/v11 | ||
|
||
retract v11.0.1 // v11.0.1 accidentally introduced a breaking change regarding the behavior of nil pointers. You can now chose to auto-initialize them by setting the `init` tag option. | ||
// v11.0.1 accidentally introduced a breaking change regarding the behavior of nil pointers. | ||
// You can now chose to auto-initialize them by setting the `init` tag option. | ||
retract v11.0.1 | ||
|
||
retract v11.2.0 // v11.2.0 accidentally introduced a breaking change regarding the behavior of nil slices of complex types. | ||
// v11.2.0 accidentally introduced a breaking change regarding the behavior of nil slices of complex types. | ||
retract v11.2.0 | ||
|
||
go 1.18 |