Skip to content

Commit b8f81e7

Browse files
authored
Merge pull request #11 from JheisonMB/feature/ux-improvements
feat(init): interactive wizard for new project and migration, banner in watch mode
2 parents 606e60e + 78721a5 commit b8f81e7

13 files changed

Lines changed: 3511 additions & 102 deletions

File tree

.gitignore

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,32 @@
1-
/target
2-
Cargo.lock
3-
*.swp
4-
*.swo
5-
*~
6-
.DS_Store
7-
.env
8-
.vscode/
9-
.idea/
10-
*.log
1+
2+
# AI coding agents
113
.kiro/
4+
.cursor/
5+
.windsurf/
6+
.claude/
7+
.continue/
8+
.copilot/
9+
.kilocode/
10+
.zencoder/
11+
.qwen/
1212
.agents/
13-
.idea/
14-
skills-lock.json
13+
skills-lock.json
14+
# Created by https://www.toptal.com/developers/gitignore/api/rust
15+
# Edit at https://www.toptal.com/developers/gitignore?templates=rust
16+
17+
### Rust ###
18+
# Generated by Cargo
19+
# will have compiled files and executables
20+
debug/
21+
target/
22+
23+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
24+
# texforge is a binary — Cargo.lock is committed intentionally
25+
26+
# These are backup files generated by rustfmt
27+
**/*.rs.bk
28+
29+
# MSVC Windows builds of rustc generate these, which store debugging information
30+
*.pdb
31+
32+
# End of https://www.toptal.com/developers/gitignore/api/rust

0 commit comments

Comments
 (0)