-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
158 lines (139 loc) · 3.97 KB
/
Copy path.gitignore
File metadata and controls
158 lines (139 loc) · 3.97 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
#ignore pdfs
*.pdf
# ignore vscode configuration
.vscode/
#------------------------------------
#angular default directories to ignore
#------------------------------------
**/node_modules
**/dist
**/coverage
**/app/**/*.js
**/app/**/*.map
#------------------------------------
#Angular-GettingStarted repo
#------------------------------------
Angular-GettingStarted/slides/**
Angular-GettingStarted/typings
Angular-GettingStarted/**/app/**/*.js
Angular-GettingStarted/**/app/**/*.map
Angular-GettingStarted/node_modules
Angular-GettingStarted/jspm_packages
Angular-GettingStarted/bower_components
Angular-GettingStarted/.vs
Angular-GettingStarted/**/*.sou
Angular-GettingStarted/**/*.user
Angular-GettingStarted/bin
Angular-GettingStarted/obj
Angular-GettingStarted/packages
Angular-GettingStarted/hello-world/**
#------------------------------------
#from pyton projets
#------------------------------------
# Byte-compiled / optimized / DLL files
python/pythonRainDrops/__pycache__/
python/pythonRainDrops/*.py[cod]
python/pythonRainDrops/*$py.class
python/pythonRainDrops/.idea/
python/pythonRainDrops/.Python
python/pythonRainDrops/env/
python/pythonRainDrops/build/
python/pythonRainDrops/develop-eggs/
python/pythonRainDrops/dist/
python/pythonRainDrops/downloads/
python/pythonRainDrops/eggs/
python/pythonRainDrops/.eggs/
python/pythonRainDrops/lib/
python/pythonRainDrops/lib64/
python/pythonRainDrops/parts/
python/pythonRainDrops/sdist/
python/pythonRainDrops/var/
python/pythonRainDrops/*.egg-info/
python/pythonRainDrops/.installed.cfg
python/pythonRainDrops/*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
python/pythonRainDrops/*.manifest
python/pythonRainDrops/*.spec
# Installer logs
python/pythonRainDrops/pip-log.txt
python/pythonRainDrops/pip-delete-this-directory.txt
# Unit test / coverage reports
python/pythonRainDrops/htmlcov/
python/pythonRainDrops/.tox/
python/pythonRainDrops/.coverage
python/pythonRainDrops/.coverage.*
python/pythonRainDrops/.cache
python/pythonRainDrops/nosetests.xml
python/pythonRainDrops/coverage.xml
python/pythonRainDrops/*.cover
python/pythonRainDrops/.hypothesis/
python/pythonRainDrops/*.mo
python/pythonRainDrops/*.pot
python/pythonRainDrops/*.log
python/pythonRainDrops/local_settings.py
python/pythonRainDrops/instance/
python/pythonRainDrops/.webassets-cache
python/pythonRainDrops/.scrapy
python/pythonRainDrops/docs/_build/
python/pythonRainDrops/target/
python/pythonRainDrops/.ipynb_checkpoints
python/pythonRainDrops/.python-version
python/pythonRainDrops/celerybeat-schedule
python/pythonRainDrops/.env
python/pythonRainDrops/venv/
python/pythonRainDrops/ENV/
python/pythonRainDrops/.spyderproject
python/pythonRainDrops/.ropeproject
#------------------------------------
#from the cSharpKoansSolution project
#------------------------------------
cSharp/cSharpKoansSolution/CSharpKoans/bin
cSharp/cSharpKoansSolution/CSharpKoans/obj
cSharp/cSharpKoansSolution/CSharpKoans.Core/obj
cSharp/cSharpKoansSolution/CSharpKoans.Test/bin
cSharp/cSharpKoansSolution/CSharpKoans.Test/obj
cSharp/cSharpKoansSolution/*.suo
cSharp/cSharpKoansSolution/*.user
cSharp/cSharpKoansSolution/packages/**
#------------------------------------
#from the DotNetKoansSolution project
#------------------------------------
#from the DotNetKoansSolution project
cSharp/DotNetKoansSolution/*.suo
cSharp/DotNetKoansSolution/**/bin/**/*
cSharp/DotNetKoansSolution/**/obj/**/*
cSharp/DotNetKoansSolution/packages/**
#------------------------------------
# MacOS specific files
#------------------------------------
.DS_Store
#------------------------------------
# Python bytecode files
#------------------------------------
**/__pycache__/