-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (57 loc) · 1.94 KB
/
.gitignore
File metadata and controls
68 lines (57 loc) · 1.94 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
# Generated by Cargo
# will have compiled files and executables
debug
target
# These are backup files generated by rustfmt
**/*.rs.bk
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Generated by cargo mutants
# Contains mutation testing data
**/mutants.out*/
# Covers JetBrains IDEs: IntelliJ, GoLand, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/vcs.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/Project_Default.xml
.idea/**/dictionaries
.idea/**/shelf
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# File-based project format
*.iws
# IntelliJ
out/
# Github Copilot persisted session migrations, see: https://github.com/microsoft/copilot-intellij-feedback/issues/712#issuecomment-3322062215
.idea/**/copilot.data.migration.*.xml
.DS_Store
/dhat-heap.json
# Benchmark artifacts.
#
# `docs/benchmarks/<version>/` mixes published Pages assets (which must be
# committed so GitHub Pages can serve them) with raw run artifacts (which
# must not). We exclude *files inside* each version dir, then explicitly
# re-include the five files that `bench-support::render_docs` produces
# and that `charts.html` references at runtime — the page 404s without
# `charts.js` / `charts.css`.
#
# Pattern note: `docs/benchmarks/*/*` (file-level) is required instead of
# `docs/benchmarks/*/` (directory-level) because git refuses to re-include
# files whose parent directory is excluded.
docs/benchmarks/*/*
!docs/benchmarks/*/charts.html
!docs/benchmarks/*/charts.css
!docs/benchmarks/*/charts.js
!docs/benchmarks/*/index.md
!docs/benchmarks/*/results.json