1+ # ## VisualStudioCode template
2+ .vscode /*
3+ ! .vscode /settings.json
4+ ! .vscode /tasks.json
5+ ! .vscode /launch.json
6+ ! .vscode /extensions.json
7+ * .code-workspace
8+
9+ # Local History for Visual Studio Code
10+ .history /
11+
12+ # ## JetBrains template
13+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
14+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
15+
16+ # User-specific stuff
17+ .idea /** /workspace.xml
18+ .idea /** /tasks.xml
19+ .idea /** /usage.statistics.xml
20+ .idea /** /dictionaries
21+ .idea /** /shelf
22+
23+ # Generated files
24+ .idea /** /contentModel.xml
25+
26+ # Sensitive or high-churn files
27+ .idea /** /dataSources /
28+ .idea /** /dataSources.ids
29+ .idea /** /dataSources.local.xml
30+ .idea /** /sqlDataSources.xml
31+ .idea /** /dynamic.xml
32+ .idea /** /uiDesigner.xml
33+ .idea /** /dbnavigator.xml
34+
35+ # Gradle
36+ .idea /** /gradle.xml
37+ .idea /** /libraries
38+
39+ # Gradle and Maven with auto-import
40+ # When using Gradle or Maven with auto-import, you should exclude module files,
41+ # since they will be recreated, and may cause churn. Uncomment if using
42+ # auto-import.
43+ # .idea/artifacts
44+ # .idea/compiler.xml
45+ # .idea/jarRepositories.xml
46+ # .idea/modules.xml
47+ # .idea/*.iml
48+ # .idea/modules
49+ # *.iml
50+ # *.ipr
51+
52+ # CMake
53+ cmake-build- * /
54+
55+ # Mongo Explorer plugin
56+ .idea /** /mongoSettings.xml
57+
58+ # File-based project format
59+ * .iws
60+
61+ # IntelliJ
62+ out /
63+
64+ # mpeltonen/sbt-idea plugin
65+ .idea_modules /
66+
67+ # JIRA plugin
68+ atlassian-ide-plugin.xml
69+
70+ # Cursive Clojure plugin
71+ .idea /replstate.xml
72+
73+ # Crashlytics plugin (for Android Studio and IntelliJ)
74+ com_crashlytics_export_strings.xml
75+ crashlytics.properties
76+ crashlytics-build.properties
77+ fabric.properties
78+
79+ # Editor-based Rest Client
80+ .idea /httpRequests
81+
82+ # Android studio 3.1+ serialized cache file
83+ .idea /caches /build_file_checksums.ser
84+
85+ # ## VirtualEnv template
86+ # Virtualenv
87+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
88+ .Python
89+ [Bb ]in
90+ [Ii ]nclude
91+ [Ll ]ib
92+ [Ll ]ib64
93+ [Ll ]ocal
94+ [Ss ]cripts
95+ pyvenv.cfg
96+ .venv
97+ pip-selfcheck.json
98+
99+ # ## Windows template
100+ # Windows thumbnail cache files
101+ Thumbs.db
102+ Thumbs.db:encryptable
103+ ehthumbs.db
104+ ehthumbs_vista.db
105+
106+ # Dump file
107+ * .stackdump
108+
109+ # Folder config file
110+ [Dd ]esktop.ini
111+
112+ # Recycle Bin used on file shares
113+ $RECYCLE.BIN /
114+
115+ # Windows Installer files
116+ * .cab
117+ * .msi
118+ * .msix
119+ * .msm
120+ * .msp
121+
122+ # Windows shortcuts
123+ * .lnk
124+
125+ # ## macOS template
126+ # General
127+ .DS_Store
128+ .AppleDouble
129+ .LSOverride
130+
131+ # Icon must end with two \r
132+ Icon
133+
134+ # Thumbnails
135+ ._ *
136+
137+ # Files that might appear in the root of a volume
138+ .DocumentRevisions-V100
139+ .fseventsd
140+ .Spotlight-V100
141+ .TemporaryItems
142+ .Trashes
143+ .VolumeIcon.icns
144+ .com.apple.timemachine.donotpresent
145+
146+ # Directories potentially created on remote AFP share
147+ .AppleDB
148+ .AppleDesktop
149+ Network Trash Folder
150+ Temporary Items
151+ .apdisk
152+
153+ # ## Python template
1154# Byte-compiled / optimized / DLL files
2155__pycache__ /
3156* .py [cod ]
@@ -20,6 +173,7 @@ parts/
20173sdist /
21174var /
22175wheels /
176+ share /python-wheels /
23177* .egg-info /
24178.installed.cfg
25179* .egg
@@ -38,14 +192,17 @@ pip-delete-this-directory.txt
38192# Unit test / coverage reports
39193htmlcov /
40194.tox /
195+ .nox /
41196.coverage
42197.coverage. *
43198.cache
44199nosetests.xml
45200coverage.xml
46201* .cover
202+ * .py,cover
47203.hypothesis /
48204.pytest_cache /
205+ cover /
49206
50207# Translations
51208* .mo
@@ -55,6 +212,7 @@ coverage.xml
55212* .log
56213local_settings.py
57214db.sqlite3
215+ db.sqlite3-journal
58216
59217# Flask stuff:
60218instance /
@@ -67,16 +225,34 @@ instance/
67225docs /_build /
68226
69227# PyBuilder
228+ .pybuilder /
70229target /
71230
72231# Jupyter Notebook
73232.ipynb_checkpoints
74233
234+ # IPython
235+ profile_default /
236+ ipython_config.py
237+
75238# pyenv
76- .python-version
239+ # For a library or package, you might want to ignore these files since the code is
240+ # intended to run in multiple environments; otherwise, check them in:
241+ # .python-version
242+
243+ # pipenv
244+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
245+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
246+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
247+ # install all needed dependencies.
248+ # Pipfile.lock
77249
78- # celery beat schedule file
250+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
251+ __pypackages__ /
252+
253+ # Celery stuff
79254celerybeat-schedule
255+ celerybeat.pid
80256
81257# SageMath parsed files
82258* .sage.py
@@ -102,3 +278,131 @@ venv.bak/
102278
103279# mypy
104280.mypy_cache /
281+ .dmypy.json
282+ dmypy.json
283+
284+ # Pyre type checker
285+ .pyre /
286+
287+ # pytype static type analyzer
288+ .pytype /
289+
290+ # Cython debug symbols
291+ cython_debug /
292+
293+ # Logs
294+ logs
295+ * .log
296+ npm-debug.log *
297+ yarn-debug.log *
298+ yarn-error.log *
299+ lerna-debug.log *
300+
301+ # Diagnostic reports (https://nodejs.org/api/report.html)
302+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
303+
304+ # Runtime data
305+ pids
306+ * .pid
307+ * .seed
308+ * .pid.lock
309+
310+ # Directory for instrumented libs generated by jscoverage/JSCover
311+ lib-cov
312+
313+ # Coverage directory used by tools like istanbul
314+ coverage
315+ * .lcov
316+
317+ # nyc test coverage
318+ .nyc_output
319+
320+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
321+ .grunt
322+
323+ # Bower dependency directory (https://bower.io/)
324+ bower_components
325+
326+ # node-waf configuration
327+ .lock-wscript
328+
329+ # Compiled binary addons (https://nodejs.org/api/addons.html)
330+ build /Release
331+
332+ # Dependency directories
333+ node_modules /
334+ jspm_packages /
335+
336+ # Snowpack dependency directory (https://snowpack.dev/)
337+ web_modules /
338+
339+ # TypeScript cache
340+ * .tsbuildinfo
341+
342+ # Optional npm cache directory
343+ .npm
344+
345+ # Optional eslint cache
346+ .eslintcache
347+
348+ # Microbundle cache
349+ .rpt2_cache /
350+ .rts2_cache_cjs /
351+ .rts2_cache_es /
352+ .rts2_cache_umd /
353+
354+ # Optional REPL history
355+ .node_repl_history
356+
357+ # Output of 'npm pack'
358+ * .tgz
359+
360+ # Yarn Integrity file
361+ .yarn-integrity
362+
363+ # dotenv environment variables file
364+ .env
365+ .env.test
366+
367+ # parcel-bundler cache (https://parceljs.org/)
368+ .cache
369+ .parcel-cache
370+
371+ # Next.js build output
372+ .next
373+ out
374+
375+ # Nuxt.js build / generate output
376+ .nuxt
377+ dist
378+
379+ # Gatsby files
380+ .cache /
381+ # Comment in the public line in if your project uses Gatsby and not Next.js
382+ # https://nextjs.org/blog/next-9-1#public-directory-support
383+ # public
384+
385+ # vuepress build output
386+ .vuepress /dist
387+
388+ # Serverless directories
389+ .serverless /
390+
391+ # FuseBox cache
392+ .fusebox /
393+
394+ # DynamoDB Local files
395+ .dynamodb /
396+
397+ # TernJS port file
398+ .tern-port
399+
400+ # Stores VSCode versions used for testing VSCode extensions
401+ .vscode-test
402+
403+ # yarn v2
404+ .yarn /cache
405+ .yarn /unplugged
406+ .yarn /build-state.yml
407+ .yarn /install-state.gz
408+ .pnp. *
0 commit comments