This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
.gitignore
108 lines (86 loc) · 1.46 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
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
########### Deployment stuff ##################
artifacts/*
target/*
targets/*
########### C stuff ##################
# use glob syntax
syntax: glob
*~
debug/*
release/*
profile/*
dist/turicreateapi*
configure.deps
config.log
new_news.txt
cxxtest/cxxtest/*.pyc
extapis/java_jni/dist
extapis/java_jni/bin
demoapps/coloring/matlab_tools/*.tsv
demoapps/shortest_path/matlab_tools/*.tsv
demoapps/pagerank/matlab_tools/*.tsv
description.json
*swp
\.mchg\.mchg
############# python stuff ################
*.py[cod]
**/.cache
/.flake8.log
# Packages
*.egg
*.egg-info
/build
eggs
parts
var
sdist
develop-eggs
.installed.cfg
# lib
# lib64
# Installer logs
pip-log.txt
## pyenv
.python-version
## ipython
.python-history
## pdb
.backtrace.[0-9]
# Unit test / coverage reports
.coverage
.tox
pytest.xml
pytest-minimal.xml
# Mr Developer
.mr.developer.cfg
.project
.pydevproject
# Documentation
pydocs/*
## docxgen under root dir
/doc/
/doxygen.log
# vim
*.swp
# Mr Old School Data Scientist
.Rhistory
__MACOSX
.ipynb_checkpoints
.DS_Store
.Rproj.user
**/*.dSYM/
*.dylib
xcuserdata/
deps/env
deps/local
deps/build
/dummy.cpp
# compile_commands.json - http://clang.llvm.org/docs/JSONCompilationDatabase.html
# generated by CMake + clang - Symlink debug/compile_commands.json (or release)
# to the root of the project for most tooling to work. This ignores the symlink.
/compile_commands.json
# Visual Studio Code files
/.vscode/
# CCache within Docker
/.docker_ccache/
/.docker_images/