-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy path.gitignore
More file actions
102 lines (80 loc) · 1.88 KB
/
Copy path.gitignore
File metadata and controls
102 lines (80 loc) · 1.88 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
#==============================================================================#
# File extensions to be ignored anywhere in the tree.
#==============================================================================#
# Temp files created by most text editors
*~
# Merge files created by git
*.orig
# Byte compiled python modules
*.pyc
*.pyd
# Vim swap files
.*.sw?
*.sw?
# Visual Studio
.vs
# Sublime Text settings
*.sublime-workspace
*.sublime-project
# Eclipse Project settings
.project
.cproject
.pydevproject
.settings
# JetBrains config
.idea
# OS X specific files
.DS_Store
# VSCode: ignore by default, allow shared configs at repo root
/.vscode/*
!/.vscode/settings.json
!/.vscode/extensions.json
#==============================================================================#
# Explicit files to ignore (only matches one).
#==============================================================================#
# Various tags
/tags
/TAGS
/GPATH
/GRTAGS
/GSYMS
/GTAGS
/ID
.gitusers
/compile_commands.json
/CMakeSettings.json
#==============================================================================#
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
#==============================================================================#
# Build directories (root only)
/build*
/cmake-build*
# Recommended location to install rbuild dependencies from README.md
/depend*
/.depend*
# Python virtual envs
venv_rbuild
.venv
# Downloaded models
test/onnx/models
# ONNX test generated files
test/onnx/load_save_arg.msgpack
test/onnx/migraphx_api_load_save_argument.msgpack
# Documentation artifacts
docs/_build
docs/_doxygen
docs/doxygen/DoxygenWarningLog.txt
docs/doxygen/html
docs/doxygen/xml
docs/html
docs/_toc.yml
/_readthedocs
# Environment / secret files
.env
.env.*
!.env.example
# Ignore CMake user presets
CMakeUserPresets.json
# local Python virtual environment
.venv/
.cache/