Skip to content

Commit 680bdbc

Browse files
committedDec 20, 2024··
google.com
1 parent 5edd4f7 commit 680bdbc

File tree

4 files changed

+379
-380
lines changed

4 files changed

+379
-380
lines changed
 

‎.gitignore

+1-282
Original file line numberDiff line numberDiff line change
@@ -1,282 +1 @@
1-
# Byte-compiled / optimized / DLL files
2-
__pycache__/
3-
*.py[cod]
4-
*$py.class
5-
6-
# C extensions
7-
*.so
8-
9-
# Distribution / packaging
10-
.Python
11-
build/
12-
develop-eggs/
13-
dist/
14-
downloads/
15-
eggs/
16-
.eggs/
17-
lib/
18-
lib64/
19-
parts/
20-
sdist/
21-
var/
22-
wheels/
23-
share/python-wheels/
24-
*.egg-info/
25-
.installed.cfg
26-
*.egg
27-
MANIFEST
28-
29-
# PyInstaller
30-
# Usually these files are written by a python script from a template
31-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32-
*.manifest
33-
*.spec
34-
35-
# Installer logs
36-
pip-log.txt
37-
pip-delete-this-directory.txt
38-
39-
# Unit test / coverage reports
40-
htmlcov/
41-
.tox/
42-
.nox/
43-
.coverage
44-
.coverage.*
45-
.cache
46-
nosetests.xml
47-
coverage.xml
48-
*.cover
49-
.hypothesis/
50-
.pytest_cache/
51-
52-
# Translations
53-
*.mo
54-
*.pot
55-
56-
# Django stuff:
57-
*.log
58-
local_settings.py
59-
db.sqlite3
60-
61-
# Flask stuff:
62-
instance/
63-
.webassets-cache
64-
65-
# Scrapy stuff:
66-
.scrapy
67-
68-
# Sphinx documentation
69-
docs/_build/
70-
71-
# PyBuilder
72-
target/
73-
74-
# Jupyter Notebook
75-
.ipynb_checkpoints
76-
77-
# IPython
78-
profile_default/
79-
ipython_config.py
80-
81-
# pyenv
82-
.python-version
83-
84-
# celery beat schedule file
85-
celerybeat-schedule
86-
87-
# SageMath parsed files
88-
*.sage.py
89-
90-
# Environments
91-
.env
92-
.venv
93-
env/
94-
venv/
95-
ENV/
96-
env.bak/
97-
venv.bak/
98-
99-
# Spyder project settings
100-
.spyderproject
101-
.spyproject
102-
103-
# Rope project settings
104-
.ropeproject
105-
106-
# mkdocs documentation
107-
/site
108-
109-
# mypy
110-
.mypy_cache/
111-
.dmypy.json
112-
dmypy.json
113-
114-
# Pyre type checker
115-
.pyre/
116-
117-
miniconda/**
118-
miniconda.sh
119-
120-
# AgLint
121-
node_modules/**
122-
123-
# VSCode (Visual Basic Code)
124-
**.code-workspace
125-
no-git/**
126-
!.vscode/settings.json
127-
!.vscode/tasks.json
128-
!.vscode/launch.json
129-
!.vscode/extensions.json
130-
!.vscode/*.code-snippets
131-
132-
# Local History for Visual Studio Code
133-
.history/
134-
135-
# Built Visual Studio Code Extensions
136-
*.vsix
137-
138-
### VisualStudioCode Patch ###
139-
# Ignore all local history of files
140-
.history
141-
.ionide
142-
143-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
144-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
145-
146-
### Intellij ###
147-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
148-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
149-
150-
# User-specific stuff
151-
.idea/**/workspace.xml
152-
.idea/**/tasks.xml
153-
.idea/**/usage.statistics.xml
154-
.idea/**/dictionaries
155-
.idea/**/shelf
156-
157-
# AWS User-specific
158-
.idea/**/aws.xml
159-
160-
# Generated files
161-
.idea/**/contentModel.xml
162-
163-
# Sensitive or high-churn files
164-
.idea/**/dataSources/
165-
.idea/**/dataSources.ids
166-
.idea/**/dataSources.local.xml
167-
.idea/**/sqlDataSources.xml
168-
.idea/**/dynamic.xml
169-
.idea/**/uiDesigner.xml
170-
.idea/**/dbnavigator.xml
171-
172-
# Gradle
173-
.idea/**/gradle.xml
174-
.idea/**/libraries
175-
176-
# Gradle and Maven with auto-import
177-
# When using Gradle or Maven with auto-import, you should exclude module files,
178-
# since they will be recreated, and may cause churn. Uncomment if using
179-
# auto-import.
180-
# .idea/artifacts
181-
# .idea/compiler.xml
182-
# .idea/jarRepositories.xml
183-
# .idea/modules.xml
184-
# .idea/*.iml
185-
# .idea/modules
186-
# *.iml
187-
# *.ipr
188-
189-
# CMake
190-
cmake-build-*/
191-
192-
# Mongo Explorer plugin
193-
.idea/**/mongoSettings.xml
194-
195-
# File-based project format
196-
*.iws
197-
198-
# IntelliJ
199-
out/
200-
201-
# mpeltonen/sbt-idea plugin
202-
.idea_modules/
203-
204-
# JIRA plugin
205-
atlassian-ide-plugin.xml
206-
207-
# Cursive Clojure plugin
208-
.idea/replstate.xml
209-
210-
# SonarLint plugin
211-
.idea/sonarlint/
212-
213-
# Crashlytics plugin (for Android Studio and IntelliJ)
214-
com_crashlytics_export_strings.xml
215-
crashlytics.properties
216-
crashlytics-build.properties
217-
fabric.properties
218-
219-
# Editor-based Rest Client
220-
.idea/httpRequests
221-
222-
# Android studio 3.1+ serialized cache file
223-
.idea/caches/build_file_checksums.ser
224-
225-
### Intellij Patch ###
226-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
227-
228-
# *.iml
229-
# modules.xml
230-
# .idea/misc.xml
231-
# *.ipr
232-
233-
# Sonarlint plugin
234-
# https://plugins.jetbrains.com/plugin/7973-sonarlint
235-
.idea/**/sonarlint/
236-
237-
# SonarQube Plugin
238-
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
239-
.idea/**/sonarIssues.xml
240-
241-
# Markdown Navigator plugin
242-
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
243-
.idea/**/markdown-navigator.xml
244-
.idea/**/markdown-navigator-enh.xml
245-
.idea/**/markdown-navigator/
246-
247-
# Cache file creation bug
248-
# See https://youtrack.jetbrains.com/issue/JBR-2257
249-
.idea/$CACHE_FILE$
250-
251-
# CodeStream plugin
252-
# https://plugins.jetbrains.com/plugin/12206-codestream
253-
.idea/codestream.xml
254-
255-
# Azure Toolkit for IntelliJ plugin
256-
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
257-
.idea/**/azureSettings.xml
258-
259-
### SSH ###
260-
**/.ssh/id_*
261-
**/.ssh/*_id_*
262-
**/.ssh/known_hosts
263-
264-
### Vim ###
265-
# Swap
266-
[._]*.s[a-v][a-z]
267-
!*.svg # comment out if you don't need vector files
268-
[._]*.sw[a-p]
269-
[._]s[a-rt-v][a-z]
270-
[._]ss[a-gi-z]
271-
[._]sw[a-p]
272-
273-
# Session
274-
Session.vim
275-
Sessionx.vim
276-
277-
# Temporary
278-
.netrwhist
279-
# Auto-generated tag files
280-
tags
281-
# Persistent undo
282-
[._]*.un~
1+
node_modules

0 commit comments

Comments
 (0)
Please sign in to comment.