This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix output, fix previous ignored clippy warnings
* as of the error reworking commit, tasks sometimes didn't erase lines when it should have. most specifically at the beginning of tasks being executed, and all tasks completing. this is now fixed, as the task_inidcator ignores logs that happened before it started, and properly counts how many lines it added, that it needs to erase. * we've reworked all of the codebase, so almost all clippy warnings that were previously ignored, are no longer ignored, and code has been rewritten so the lint step passes. * There are some "clippy::too_many_arguments" being ignored, I intend to fix these, but these require more of a deft hand, and so I don't want to rush it. reworking may also not be needed once I try it. (This is currently the most ignored clippy warning according too: rust-lang/rust-clippy#5418) and reasoning I agree with is there. * There is one: `#[allow(unused)]` for pipeline descriptions. This is true, it is unused right now, but I want to keep it in the schema because I do want to render the pipeline in list one day. I just haven't found quite a way to do it yet, but i added it in because I know I want to do it (and I don't want to remove it). * this has also resulted in a giant split up of docker executor, so it is no longer all in one gigantic file. This really _really_ needed to be done, so I'm glad I finally did it.
- Loading branch information
Showing
32 changed files
with
2,550 additions
and
2,274 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
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,6 +1,6 @@ | ||
//! The overarching module for all particular commands implemented by Dev-Loop. | ||
pub mod clean; | ||
pub mod exec; | ||
pub mod list; | ||
pub mod run; | ||
pub(crate) mod clean; | ||
pub(crate) mod exec; | ||
pub(crate) mod list; | ||
pub(crate) mod run; |
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
Oops, something went wrong.