-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (52 loc) · 1.82 KB
/
Copy path.gitignore
File metadata and controls
64 lines (52 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Rust build artefacts
rust/target/
# Cargo.lock IS committed for this crate. It is a binary-producing crate
# (cdylib/staticlib) shipped to end users, so reproducible builds matter.
# (Per the official Cargo guidance: commit the lockfile for binaries,
# omit it for libraries — Native Assets treats us as the former.)
!rust/Cargo.lock
# Dart/Flutter
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
build/
pubspec.lock
# CocoaPods (regenerated by `pod install`; like pubspec.lock for pods).
example/ios/Podfile.lock
example/macos/Podfile.lock
example/ios/Pods/
example/macos/Pods/
# Coverage artefacts. Both `flutter test --coverage` (Dart) and
# `cargo tarpaulin --output-dir coverage` (Rust, configured in
# `rust/tarpaulin.toml`) write `lcov.info` into a sibling `coverage/`
# directory. Each CI run regenerates and uploads the file to Codecov
# directly from the workflow (see `.github/workflows/ci.yml` →
# `Upload Dart coverage to Codecov` / `Upload Rust coverage to
# Codecov`); the in-tree copy is purely a local artefact.
coverage/
# FRB-generated bindings ARE committed (`lib/src/ffi/`, `rust/src/frb_generated.rs`)
# so that `flutter pub get` works without requiring the FRB CLI to be installed.
# Regenerate with: flutter_rust_bridge_codegen generate
# Beads / Dolt files (added by bd init)
.dolt/
*.db
.beads-credential-key
.beads/issues.jsonl
.beads/last_pull
.linear.toml
# IDE — JetBrains (machine-specific; matches Flutter's default template)
.idea/
*.iml
*.ipr
*.iws
# FVM Version Cache
.fvm/
tool/.snippets/
# Agent / human scratch space. Used for transient working files
# (e.g. test fixtures captured while validating a workflow change,
# bd issue-body drafts) whose persistent record lives elsewhere
# (Dolt / Linear / the actual workflow comment). Never committed.
tmp/
# macOS Finder metadata
.DS_Store