-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (39 loc) · 1.07 KB
/
Copy path.gitignore
File metadata and controls
47 lines (39 loc) · 1.07 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
# Generated by Cargo
# will have compiled files and executables
**/target/**
**/mutants.out/**
# Cargo.lock is committed for libraries to ensure reproducible CI builds
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
# These are backup files generated by rustfmt
**/*.rs.bk
# Logs
logs/
# Ignore all hidden files and directories by default
.*
**/.*
# Explicitly allow these hidden files/directories
!.gitignore
!.github/
!.github/**
!.cargo/
!.cargo/**
!.githooks/
!.githooks/**
# Ships the acton-reactive skill so a checkout auto-loads it; the files
# themselves live in /skills and this is a symlink to them.
!/.claude/
/.claude/*
!/.claude/skills/
!/.claude/skills/**
# Ignore potentially sensitive file types by default
*.sh
*.txt
*.old
*.log
*.env
# Allow Python requirements files
!**/requirements.txt
# Allow example launcher scripts. The blanket *.sh rule above silently
# swallowed ipc_fruit_market's start.sh and stop.sh, which its README and the
# server's own startup banner both told users to run.
!acton-reactive/examples/**/*.sh