Skip to content

Commit c074fe7

Browse files
Copilotlarp0
andcommitted
Update .gitignore: add target/ and clean up patterns
- Add Rust target/ directory to gitignore - Remove target/ from git tracking to prevent build artifacts from being committed - Reorganize .gitignore with proper sections for Rust, Node.js, IDEs, OS files - Clean up numbered line prefixes and organize patterns logically - Add comprehensive coverage for build artifacts, dependencies, and temporary files Co-authored-by: larp0 <[email protected]>
1 parent 9b6aa68 commit c074fe7

File tree

1,842 files changed

+64
-7181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,842 files changed

+64
-7181
lines changed

.gitignore

Lines changed: 64 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,84 @@
1-
build
2-
.vscode
3-
/index.js
4-
Tornado_flat.sol
1+
# Rust
2+
target/
3+
Cargo.lock
4+
**/*.rs.bk
5+
*.pdb
56

6-
# Created by .ignore support plugin (hsz.mobi)
7-
### Node template
8-
# Logs
9-
logs
10-
*.log
7+
# Node.js
8+
node_modules/
119
npm-debug.log*
1210
yarn-debug.log*
1311
yarn-error.log*
1412
lerna-debug.log*
13+
.npm
14+
.yarn-integrity
15+
*.tgz
1516

16-
# Diagnostic reports (https://nodejs.org/api/report.html)
17-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
18-
19-
# Runtime data
20-
pids
21-
*.pid
22-
*.seed
23-
*.pid.lock
24-
25-
# Directory for instrumented libs generated by jscoverage/JSCover
26-
lib-cov
17+
# Build outputs
18+
build/
19+
dist/
20+
*.log
21+
logs/
2722

28-
# Coverage directory used by tools like istanbul
29-
coverage
23+
# Environment and configuration
24+
.env
25+
.env.test
26+
.env.local
27+
.env.production
28+
29+
# IDEs and editors
30+
.vscode/
31+
.idea/
32+
*.swp
33+
*.swo
34+
*~
35+
36+
# Testing and coverage
37+
coverage/
3038
*.lcov
31-
32-
# nyc test coverage
3339
.nyc_output
40+
coverage.json
41+
42+
# Cache directories
43+
.cache/
44+
.parcel-cache/
45+
.next/
46+
.nuxt/
47+
.vuepress/dist/
48+
.eslintcache
3449

35-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
36-
.grunt
37-
38-
# Bower dependency directory (https://bower.io/)
39-
bower_components
40-
41-
# node-waf configuration
42-
.lock-wscript
50+
# Temporary and backup files
51+
*.tmp
52+
*.temp
53+
*.bak
54+
*.pid
55+
*.seed
56+
*.pid.lock
57+
*.tsbuildinfo
4358

44-
# Compiled binary addons (https://nodejs.org/api/addons.html)
45-
build/Release
59+
# OS generated files
60+
Thumbs.db
61+
.DS_Store
4662

4763
# Dependency directories
48-
node_modules/
4964
jspm_packages/
50-
51-
# TypeScript v1 declaration files
5265
typings/
66+
bower_components/
5367

54-
# TypeScript cache
55-
*.tsbuildinfo
56-
57-
# Optional npm cache directory
58-
.npm
59-
60-
# Optional eslint cache
61-
.eslintcache
62-
63-
# Optional REPL history
64-
.node_repl_history
65-
66-
# Output of 'npm pack'
67-
*.tgz
68-
69-
# Yarn Integrity file
70-
.yarn-integrity
71-
72-
# dotenv environment variables file
73-
.env
74-
.env.test
75-
76-
# parcel-bundler cache (https://parceljs.org/)
77-
.cache
78-
79-
# next.js build output
80-
.next
81-
82-
# nuxt.js build output
83-
.nuxt
84-
85-
# vuepress build output
86-
.vuepress/dist
68+
# Project specific
69+
./index.js
70+
Tornado_flat.sol
71+
ERC20Tornado_flat.sol
72+
ETHTornado_flat.sol
8773

88-
# Serverless directories
74+
# Serverless and other frameworks
8975
.serverless/
90-
91-
# FuseBox cache
9276
.fusebox/
93-
94-
# DynamoDB Local files
9577
.dynamodb/
96-
97-
ERC20Tornado_flat.sol
98-
ETHTornado_flat.sol
99-
100-
coverage.json
78+
.grunt/
79+
.lock-wscript/
80+
lib-cov/
81+
pids/
82+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
83+
build/Release
84+
.node_repl_history

target/.rustc_info.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

target/.rustdoc_fingerprint.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

target/CACHEDIR.TAG

Lines changed: 0 additions & 3 deletions
This file was deleted.

target/debug/.cargo-lock

Whitespace-only changes.
-14 Bytes
Binary file not shown.

target/debug/.fingerprint/aead-69061aca3183c572/invoked.timestamp

Lines changed: 0 additions & 1 deletion
This file was deleted.

target/debug/.fingerprint/aead-69061aca3183c572/lib-aead

Lines changed: 0 additions & 1 deletion
This file was deleted.

target/debug/.fingerprint/aead-69061aca3183c572/lib-aead.json

Lines changed: 0 additions & 1 deletion
This file was deleted.
-14 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)