1
- # Logs
2
- logs
3
- * .log
4
- npm-debug.log *
5
- yarn-debug.log *
6
- yarn-error.log *
7
-
8
- # Runtime data
9
- pids
10
- * .pid
11
- * .seed
12
- * .pid.lock
13
-
14
- # Directory for instrumented libs generated by jscoverage/JSCover
15
- lib-cov
16
-
17
- # Coverage directory used by tools like istanbul
18
- coverage
19
-
20
- # nyc test coverage
21
- .nyc_output
22
-
23
- # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24
- .grunt
25
-
26
- # Bower dependency directory (https://bower.io/)
27
- bower_components
28
-
29
- # node-waf configuration
30
- .lock-wscript
31
-
32
- # Compiled binary addons (http://nodejs.org/api/addons.html)
33
- build /Release
34
-
35
- # Dependency directories
36
- node_modules /
37
- jspm_packages /
38
-
39
- # Typescript v1 declaration files
40
- typings /
41
-
42
- # Optional npm cache directory
43
- .npm
44
-
45
- # Optional eslint cache
46
- .eslintcache
47
-
48
- # Optional REPL history
49
- .node_repl_history
50
-
51
- # Output of 'npm pack'
52
- * .tgz
53
-
54
- # Yarn Integrity file
55
- .yarn-integrity
56
-
57
- # dotenv environment variables file
58
- .env
59
-
60
- package-lock.json
61
- lib
62
-
63
1
# Byte-compiled / optimized / DLL files
64
2
__pycache__ /
65
3
* .py [cod ]
@@ -68,6 +6,10 @@ __pycache__/
68
6
# C extensions
69
7
* .so
70
8
9
+ # JS/TS stuff
10
+ .yarn /
11
+ * .tsbuildinfo
12
+
71
13
# Distribution / packaging
72
14
.Python
73
15
env /
@@ -82,10 +24,10 @@ lib64/
82
24
parts /
83
25
sdist /
84
26
var /
85
- wheels /
86
27
* .egg-info /
87
28
.installed.cfg
88
29
* .egg
30
+ package-lock.json
89
31
90
32
# PyInstaller
91
33
# Usually these files are written by a python script from a template
@@ -103,10 +45,14 @@ htmlcov/
103
45
.coverage
104
46
.coverage. *
105
47
.cache
48
+ python_junit.xml
49
+ junit.xml
106
50
nosetests.xml
107
51
coverage.xml
108
- * . cover
52
+ * , cover
109
53
.hypothesis /
54
+ .pytest_cache
55
+ .ruff_cache
110
56
111
57
# Translations
112
58
* .mo
@@ -116,54 +62,107 @@ coverage.xml
116
62
* .log
117
63
local_settings.py
118
64
119
- # Flask stuff:
65
+ # Flask instance folder
120
66
instance /
121
- .webassets-cache
122
67
123
68
# Scrapy stuff:
124
69
.scrapy
125
70
126
71
# Sphinx documentation
127
72
docs /_build /
73
+ docs /source
128
74
129
75
# PyBuilder
130
76
target /
131
77
132
- # Jupyter Notebook
78
+ # IPython Notebook
133
79
.ipynb_checkpoints
80
+ * .ipynb
81
+ .autoversion
134
82
135
83
# pyenv
136
84
.python-version
137
85
138
86
# celery beat schedule file
139
87
celerybeat-schedule
140
88
141
- # SageMath parsed files
142
- * .sage.py
143
-
144
89
# dotenv
145
90
.env
146
91
147
92
# virtualenv
148
- .venv
149
93
venv /
150
94
ENV /
151
95
152
96
# Spyder project settings
153
97
.spyderproject
154
- .spyproject
155
98
156
99
# Rope project settings
157
100
.ropeproject
158
101
159
- # mkdocs documentation
160
- /site
102
+ # =========================
103
+ # Operating System Files
104
+ # =========================
161
105
162
- # mypy
163
- .mypy_cache /
106
+ # OSX
107
+ # =========================
164
108
165
109
.DS_Store
166
- .autoversion
110
+ .AppleDouble
111
+ .LSOverride
112
+
113
+ # Thumbnails
114
+ ._ *
115
+
116
+ # Files that might appear in the root of a volume
117
+ .DocumentRevisions-V100
118
+ .fseventsd
119
+ .Spotlight-V100
120
+ .TemporaryItems
121
+ .Trashes
122
+ .VolumeIcon.icns
123
+
124
+ # Directories potentially created on remote AFP share
125
+ .AppleDB
126
+ .AppleDesktop
127
+ Network Trash Folder
128
+ Temporary Items
129
+ .apdisk
130
+
131
+ # Windows
132
+ # =========================
133
+
134
+ # Windows image file caches
135
+ Thumbs.db
136
+ ehthumbs.db
137
+
138
+ # Folder config file
139
+ Desktop.ini
140
+
141
+ # Recycle Bin used on file shares
142
+ $RECYCLE.BIN /
143
+
144
+ # Windows Installer files
145
+ * .cab
146
+ * .msi
147
+ * .msm
148
+ * .msp
149
+
150
+ # Windows shortcuts
151
+ * .lnk
152
+
153
+
154
+ # NPM
155
+ # ----
156
+ ** /node_modules /
157
+
158
+ # Coverage data
159
+ # -------------
160
+ ** /coverage /
161
+
162
+ # Notebook and lab extensions
163
+ nbcelltests /nbextension /static /index. *
164
+ nbcelltests /labextension /* .tgz
165
+ nbcelltests /labextension
167
166
168
167
# generated
169
168
* .ipynb
@@ -176,6 +175,3 @@ junit.xml
176
175
examples /_ *
177
176
* _test.py
178
177
* _test.html
179
-
180
- nbcelltests /labextension /* .tgz
181
- nbcelltests /labextension
0 commit comments