diff options
| author | mo8it <mo8it@proton.me> | 2025-06-28 01:31:49 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2025-06-28 01:32:18 +0200 |
| commit | 57b3727b3e69d50c0b72aa41d79b8d16d47d58fa (patch) | |
| tree | 5c290be91b9a874cc0df85c15ab7267de3f15cdc | |
| parent | cb60c8887cf7554e9ad258a6afb1f81cf92f62e4 (diff) | |
Don't ignore `.rustlings-state.txt` in `.gitignore` of `rustlings dev new`
| -rw-r--r-- | src/dev/new.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dev/new.rs b/src/dev/new.rs index 883b6fa..7c72a6b 100644 --- a/src/dev/new.rs +++ b/src/dev/new.rs @@ -78,8 +78,7 @@ pub fn new(path: &Path, no_git: bool) -> Result<()> { Ok(()) } -pub const GITIGNORE: &[u8] = b".rustlings-state.txt -Cargo.lock +pub const GITIGNORE: &[u8] = b"Cargo.lock target/ .vscode/ !.vscode/extensions.json |
