-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
123 lines (110 loc) · 3.26 KB
/
Copy path.gitignore
File metadata and controls
123 lines (110 loc) · 3.26 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
121
122
123
# =============================================================================
# OS
# =============================================================================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Thumbs.db
ehthumbs.db
Desktop.ini
# =============================================================================
# IDE / Editor
# =============================================================================
# NOTE: .idea/ and .vscode/ are intentionally NOT ignored — shared IDE config
# (JetBrains run configs/code style, VS Code title-bar colors + recommended
# extensions) is committed per repo standards [GITIGNORE-RULES].
*.swp
*.swo
*~
.project
.classpath
.settings/
*.sublime-project
*.sublime-workspace
# =============================================================================
# Secrets / Local Overrides
# =============================================================================
.env
.env.local
.env.*.local
*.local
*.secret
*.pem
*.key
!*.pub.key
.napenv.local
# =============================================================================
# Temporary
# =============================================================================
tmp/
temp/
scratch/
# =============================================================================
# Coverage Artifacts
# =============================================================================
coverage/
lcov.info
*.profraw
*.profdata
htmlcov/
.coverage
coverage.xml
coverage.out
coverage-summary.json
TestResults/
mutants.out/
.stryker-tmp/
# =============================================================================
# F# / .NET
# =============================================================================
bin/
obj/
publish/
.ionide/
# =============================================================================
# TypeScript / Node
# =============================================================================
node_modules/
dist/
out/
build/
*.vsix
*.tgz
.npm/
.cache/
.vscode-test/
.vscode-test-web/
.nyc_output/
# =============================================================================
# Rust
# =============================================================================
src/Napper.Zed/target/
*.wasm
# =============================================================================
# Tool Caches
# =============================================================================
.commandtree/
.deslop-cache/
.ghissues/
# =============================================================================
# Generated Files
# =============================================================================
# Napper.Core ADTs generated from Types.td (typeDiagram). Run `make generate-types`.
src/Napper.Core/Types.Generated.fs
website/_site/
examples/httpbin/advanced-report.html
examples/httpbin/all-methods-report.html
tests/Napper.Core.Tests/.spec-cache/
scripts/logs/
scripts/.too_many_cooks/
__pycache__/
.playwright-mcp/
# =============================================================================
# Build artifacts — NEVER commit packed packages (a stale napper.1.0.0.nupkg
# here once broke the NuGet publish: the push glob matched it and 403'd on the
# foreign-owned `napper` id). dotnet pack regenerates these every release.
# =============================================================================
**/nupkg/
*.nupkg