-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy path.gitignore
More file actions
120 lines (105 loc) · 2.07 KB
/
Copy path.gitignore
File metadata and controls
120 lines (105 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
*.o
*.lo
*.la
*.pc
*.m4
Makefile
Makefile.in
.deps
.libs
.dirstamp
config.*
ta-lib.dpkg
ta-lib.spec
missing
ltmain.sh
libtool
install-sh
include/ta_config.*
include/stamp-h1
depcomp
configure
compile
autom4te.cache
ar-lib
**/.history/
# TA-Lib tools (must be built by devs on its own platform)
src/tools/ta_regtest/ta_regtest
bin/*
!bin/HOLDER
## TA-Lib misc. build and packaging artifacts
msbuild_path.txt
lib/ta_*
lib/ta-*
build/ta-lib-*.tar.gz
LICENSE.rtf
## File system
.DS_Store
desktop.ini
## User stuff...
node_modules
__pycache__
venv
.venv
.env
# Build files
/build
/MANIFEST
## Temporary files
*~
\#*
\#*\#
.#
TODO
tmp
temp/
## Editors
*.swp
*.swo
Session.vim
.cproject
.idea
*.iml
.project
.favorites.json
.settings/
.vscode/ltex.disabledRules.en-US.txt
.vscode/ltex.dictionary.en-US.txt
# Visual Studio
.vs/
out/
*.vcxproj.user
## MSVC Windows builds (debug info)
*.pdb
# Never ignore .gitkeep files
!**/.gitkeep
cmake-build*/
rust/target
# Build artifacts (platform-specific, rebuilt locally)
ta_codegen/output/csharp/tools/bin/
ta_codegen/output/csharp/tools/obj/
ta_codegen/output/csharp/library/bin/
ta_codegen/output/csharp/library/obj/
ta_codegen/output/csharp/library/test/bin/
ta_codegen/output/csharp/library/test/obj/
ta_codegen/output/java/**/*.class
ta_codegen/output/java/library/target/
# Git worktrees
.worktrees/
ta_codegen/output/rust/target/
.claude/worktrees
# Local working notes — never commit (see to_be_deleted/ contents before deleting)
to_be_deleted/
# Release packages are NOT committed. They live in the content-addressed asset
# pool (scripts/utilities/dist_pool.py), named by the sha256 that each
# dist/digests/*.digest records. Committing them grew git history by ~35 MB/day:
# .deb/.msi/.zip/.tar.gz are already compressed, so consecutive builds delta at
# ~0% and every nightly added permanently-unique bytes (dist/ reached 91% of the
# packed repo).
#
# dist/digests/ stays tracked -- it is the convergence signal AND the pool key.
# These globs only match direct children of dist/, so the digests are unaffected.
dist/*.deb
dist/*.msi
dist/*.zip
dist/*.tar.gz