-
Notifications
You must be signed in to change notification settings - Fork 15
/
.gitignore
55 lines (44 loc) · 1.06 KB
/
.gitignore
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
# Usage guidelines
#
# A set of global Git ignores. This file is open-sourced.
# If you want to add some local paths, please add a .gitignore inside the project/directory where the files reside.
#
# When updating this file, consider keeping in sync with stratosphere workspace.conf `internal.sparse.backup.skip-patterns`
# General
*.log
*.orig
*.hprof
# IntelliJ IDEA
.attach_pid*
.idea
/.shelf/
docs/css/overridesIJ23.css
# VSCode
*.code-workspace
.devcontainer
.vscode
# Python
.mypy_cache/
*.pyc
*.egg-info/
# Stratosphere - human-generated
*.local.runconf
profiles/*local.conf
# Used when project is imported from bsp
.bsp
generated-obt
generated-annoproc
stale_outputs_checked
/test-output/
# briefly present when formatting scala files using the git pre-commit hook
diff-file.txt
diff-chunked.txt
# TODO (OPTIMUS-41799): fix zinc + jcstress and remove this
*_jcstress.java
# Human-generated configuration file that should never go to codetree
mischief.obt
# cucumber test reports
bdd_report.html
/reports/cucumber/
# EOF
# See top of file for .gitignore guidelines.