-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce Clippy pedantic and nursery
This commit adds new Clippy directives. Most lints have been applied, mostly affecting formatting or control flow. `find` function was skipped because it may be replaced with a non-recursive version (#80).
- Loading branch information
Showing
7 changed files
with
48 additions
and
48 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 |
---|---|---|
|
@@ -9,12 +9,13 @@ authors = [ | |
"Sean Griffin <[email protected]>", | ||
"Adam Sharp <[email protected]>", | ||
"Arpad Borsos <[email protected]>", | ||
"Allan Zhang <[email protected]>", | ||
"Allan Zhang <[email protected]>", | ||
] | ||
description = "A well-maintained fork of the dotenv crate" | ||
homepage = "https://github.com/allan2/dotenvy" | ||
readme = "README.md" | ||
keywords = ["dotenv", "env", "environment", "settings", "config"] | ||
categories = ["configuration"] | ||
license = "MIT" | ||
repository = "https://github.com/allan2/dotenvy" | ||
edition = "2018" | ||
|
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 |
---|---|---|
|
@@ -10,10 +10,11 @@ authors = [ | |
"Mike Piccolo <[email protected]>", | ||
"Alice Maz <[email protected]>", | ||
"Sean Griffin <[email protected]>", | ||
"Allan Zhang <[email protected]>", | ||
"Allan Zhang <[email protected]>", | ||
] | ||
readme = "README.md" | ||
keywords = ["dotenv", "env", "environment", "settings", "config"] | ||
categories = ["configuration"] | ||
license = "MIT" | ||
homepage = "https://github.com/allan2/dotenvy" | ||
repository = "https://github.com/allan2/dotenvy" | ||
|