-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.gitignore
More file actions
93 lines (76 loc) · 1.92 KB
/
Copy path.gitignore
File metadata and controls
93 lines (76 loc) · 1.92 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
# Dependencies
node_modules/
# Build output
dist/
build/
*.tsbuildinfo
# Compiled library archives — the canonical source of truth lives in
# libs/sources/<lib-name>/ (.st files + library.json for hand-authored
# libs; .library binary + library.json for codesys-imported libs). The
# .stlib archives are produced by `npm run build` from those sources,
# so tracking them in git would just create stale-blob churn on every
# library or compiler change. Build flow:
# npm install && npm run build → generates libs/*.stlib
# CI rebuilds them before tests via vitest globalSetup; release jobs
# rebuild them as part of `npm run build`.
libs/*.stlib
# iec-types.json is a similar build artefact: derived from
# `src/semantic/iec-types-data.ts` by `scripts/build-iec-types-json.mjs`,
# so tracking it would just produce churn whenever the metadata changes.
libs/iec-types.json
# Extension-side copy is also a build artifact (vscode-extension's
# esbuild.mjs syncs it from libs/ at vsix build time).
vscode-extension/bundled-libs/*.stlib
vscode-extension/bundled-libs/iec-types.json
# IDE and editors
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Environment files
.env
.env.local
.env.*.local
# Test coverage
coverage/
.nyc_output/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Project specific - generated output files
generated/
output/
# Generated C++ files (but not runtime source headers)
*.cpp
*.o
*.a
*.exe
# Allow runtime source headers (these are source code, not generated)
!src/runtime/include/*.hpp
!src/runtime/include/*.h
# Allow runtime test files (these are source code, not generated)
!src/runtime/tests/*.cpp
# Test outputs
test_output/
golden_output/
# Chevrotain parser cache
.chevrotain_cache/
# C++ runtime build artifacts
runtime/build/
runtime/*.o
runtime/*.a
# Temporary files
tmp/
temp/
*.tmp
# REPL history
.strucpp_history
# Generated test output headers
tests/**/*.hpp