-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (52 loc) · 1.81 KB
/
Copy path.gitignore
File metadata and controls
57 lines (52 loc) · 1.81 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
# managed:start
# MANAGED by EpiAwarePackageTools.scaffold — do not edit by hand.
# Standard ignore rules live between the markers below and are
# replaced on every update. Add package-specific rules after the
# closing marker — they are preserved across updates.
# Julia: Manifest.toml records a resolved env. For a package (not an
# application) it must NOT be committed — a committed Manifest resolved on the
# newest Julia warns and fails the lts CI job, and its git-tree-sha1 hashes trip
# the detect-secrets pre-commit hook. Ignore it across every environment.
Manifest.toml
**/Manifest.toml
**/Manifest-*.toml
# Generated documentation output and dependencies.
docs/build/
docs/node_modules/
docs/package-lock.json
# README-derived, benchmark, and API-reference pages are generated by
# docs/make.jl.
docs/src/index.md
docs/src/benchmarks.md
docs/src/lib/public.md
docs/src/lib/internals.md
# The release-notes page (from NEWS.md) and the Literate-rendered tutorial
# markdown are also generated by docs/make.jl. The tutorial path tracks
# docs_config.jl's TUTORIALS_SUBDIR.
docs/src/release-notes.md
docs/src/getting-started/tutorials/*.md
# Coverage artefacts.
*.cov
*.jl.*.cov
*.jl.cov
*.jl.mem
coverage/
lcov.info
lcov-*.info
# Benchmark artefacts.
/.benchmarkci
/benchmark/*.json
results_*.json*
tune.json
# Editor / OS clutter.
.DS_Store
.vscode/
# Development worktrees. `worktree-*` covers a sibling-style checkout; the
# convention across these repos is a nested `worktrees/<name>/` under the repo
# root (a worktree created as a subproject rather than a sibling), which the
# glob does not match — so a live worktree sat untracked, one `git add -A` away
# from being committed (#247). The kit's own test discovery already assumes this
# layout (see `run_tests.jl`), so the ignore should too.
worktree-*
worktrees/
# managed:end