/ .gitignore
.gitignore
1 /target 2 # ----------------- 3 # Dart 4 # ----------------- 5 .dart_tool/ 6 .packages 7 .pub-cache/ 8 build/ 9 doc/api/ 10 *.dart.js 11 *.info.json 12 *.js_ 13 *.js.deps 14 *.js.map 15 16 # Flutter specific 17 .ios/ 18 .android/ 19 .flutter-plugins 20 .flutter-plugins-dependencies 21 .flutter-versions 22 .melos_tool/ 23 24 # Coverage 25 coverage/ 26 27 # ----------------- 28 # Rust 29 # ----------------- 30 /target/ 31 **/*.rs.bk 32 33 # Cargo.lock (keep for binaries, ignore for libraries; uncomment if needed) 34 # Cargo.lock 35 36 # Rust toolchains 37 .rustup/ 38 .cargo/ 39 40 # ----------------- 41 # Emacs 42 # ----------------- 43 *~ 44 \#*\# 45 .\#* 46 47 # ----------------- 48 # General 49 # ----------------- 50 .DS_Store 51 Thumbs.db 52 *.swp 53 *.swo