Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9ace274

Browse files
Initial Release
0 parents commit 9ace274

File tree

9 files changed

+471
-0
lines changed

9 files changed

+471
-0
lines changed

‎.gitignore

Lines changed: 341 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,341 @@
1+
### macOS ###
2+
# General
3+
.DS_Store
4+
.AppleDouble
5+
.LSOverride
6+
7+
# Icon must end with two \r
8+
Icon
9+
10+
11+
# Thumbnails
12+
._*
13+
14+
# Files that might appear in the root of a volume
15+
.DocumentRevisions-V100
16+
.fseventsd
17+
.Spotlight-V100
18+
.TemporaryItems
19+
.Trashes
20+
.VolumeIcon.icns
21+
.com.apple.timemachine.donotpresent
22+
23+
# Directories potentially created on remote AFP share
24+
.AppleDB
25+
.AppleDesktop
26+
Network Trash Folder
27+
Temporary Items
28+
.apdisk
29+
30+
### macOS Patch ###
31+
# iCloud generated files
32+
*.icloud
33+
34+
### PyCharm ###
35+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
36+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
37+
38+
# User-specific stuff
39+
.idea/**/workspace.xml
40+
.idea/**/tasks.xml
41+
.idea/**/usage.statistics.xml
42+
.idea/**/dictionaries
43+
.idea/**/shelf
44+
45+
# AWS User-specific
46+
.idea/**/aws.xml
47+
48+
# Generated files
49+
.idea/**/contentModel.xml
50+
51+
# Sensitive or high-churn files
52+
.idea/**/dataSources/
53+
.idea/**/dataSources.ids
54+
.idea/**/dataSources.local.xml
55+
.idea/**/sqlDataSources.xml
56+
.idea/**/dynamic.xml
57+
.idea/**/uiDesigner.xml
58+
.idea/**/dbnavigator.xml
59+
60+
# Gradle
61+
.idea/**/gradle.xml
62+
.idea/**/libraries
63+
64+
# Gradle and Maven with auto-import
65+
# When using Gradle or Maven with auto-import, you should exclude module files,
66+
# since they will be recreated, and may cause churn. Uncomment if using
67+
# auto-import.
68+
# .idea/artifacts
69+
# .idea/compiler.xml
70+
# .idea/jarRepositories.xml
71+
# .idea/modules.xml
72+
# .idea/*.iml
73+
# .idea/modules
74+
# *.iml
75+
# *.ipr
76+
77+
# CMake
78+
cmake-build-*/
79+
80+
# Mongo Explorer plugin
81+
.idea/**/mongoSettings.xml
82+
83+
# File-based project format
84+
*.iws
85+
86+
# IntelliJ
87+
out/
88+
89+
# mpeltonen/sbt-idea plugin
90+
.idea_modules/
91+
92+
# JIRA plugin
93+
atlassian-ide-plugin.xml
94+
95+
# Cursive Clojure plugin
96+
.idea/replstate.xml
97+
98+
# SonarLint plugin
99+
.idea/sonarlint/
100+
101+
# Crashlytics plugin (for Android Studio and IntelliJ)
102+
com_crashlytics_export_strings.xml
103+
crashlytics.properties
104+
crashlytics-build.properties
105+
fabric.properties
106+
107+
# Editor-based Rest Client
108+
.idea/httpRequests
109+
110+
# Android studio 3.1+ serialized cache file
111+
.idea/caches/build_file_checksums.ser
112+
113+
### PyCharm Patch ###
114+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
115+
116+
# *.iml
117+
# modules.xml
118+
# .idea/misc.xml
119+
# *.ipr
120+
121+
# Sonarlint plugin
122+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
123+
.idea/**/sonarlint/
124+
125+
# SonarQube Plugin
126+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
127+
.idea/**/sonarIssues.xml
128+
129+
# Markdown Navigator plugin
130+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
131+
.idea/**/markdown-navigator.xml
132+
.idea/**/markdown-navigator-enh.xml
133+
.idea/**/markdown-navigator/
134+
135+
# Cache file creation bug
136+
# See https://youtrack.jetbrains.com/issue/JBR-2257
137+
.idea/$CACHE_FILE$
138+
139+
# CodeStream plugin
140+
# https://plugins.jetbrains.com/plugin/12206-codestream
141+
.idea/codestream.xml
142+
143+
# Azure Toolkit for IntelliJ plugin
144+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
145+
.idea/**/azureSettings.xml
146+
147+
### Python ###
148+
# Byte-compiled / optimized / DLL files
149+
__pycache__/
150+
*.py[cod]
151+
*$py.class
152+
153+
# C extensions
154+
*.so
155+
156+
# Distribution / packaging
157+
.Python
158+
build/
159+
develop-eggs/
160+
dist/
161+
downloads/
162+
eggs/
163+
.eggs/
164+
lib/
165+
lib64/
166+
parts/
167+
sdist/
168+
var/
169+
wheels/
170+
share/python-wheels/
171+
*.egg-info/
172+
.installed.cfg
173+
*.egg
174+
MANIFEST
175+
176+
# PyInstaller
177+
# Usually these files are written by a python script from a template
178+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
179+
*.manifest
180+
*.spec
181+
182+
# Installer logs
183+
pip-log.txt
184+
pip-delete-this-directory.txt
185+
186+
# Unit test / coverage reports
187+
htmlcov/
188+
.tox/
189+
.nox/
190+
.coverage
191+
.coverage.*
192+
.cache
193+
nosetests.xml
194+
coverage.xml
195+
*.cover
196+
*.py,cover
197+
.hypothesis/
198+
.pytest_cache/
199+
cover/
200+
201+
# Translations
202+
*.mo
203+
*.pot
204+
205+
# Django stuff:
206+
*.log
207+
local_settings.py
208+
db.sqlite3
209+
db.sqlite3-journal
210+
211+
# Flask stuff:
212+
instance/
213+
.webassets-cache
214+
215+
# Scrapy stuff:
216+
.scrapy
217+
218+
# Sphinx documentation
219+
docs/_build/
220+
221+
# PyBuilder
222+
.pybuilder/
223+
target/
224+
225+
# Jupyter Notebook
226+
.ipynb_checkpoints
227+
228+
# IPython
229+
profile_default/
230+
ipython_config.py
231+
232+
# pyenv
233+
# For a library or package, you might want to ignore these files since the code is
234+
# intended to run in multiple environments; otherwise, check them in:
235+
# .python-version
236+
237+
# pipenv
238+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
239+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
240+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
241+
# install all needed dependencies.
242+
#Pipfile.lock
243+
244+
# poetry
245+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
246+
# This is especially recommended for binary packages to ensure reproducibility, and is more
247+
# commonly ignored for libraries.
248+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
249+
#poetry.lock
250+
251+
# pdm
252+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
253+
#pdm.lock
254+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
255+
# in version control.
256+
# https://pdm.fming.dev/#use-with-ide
257+
.pdm.toml
258+
259+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
260+
__pypackages__/
261+
262+
# Celery stuff
263+
celerybeat-schedule
264+
celerybeat.pid
265+
266+
# SageMath parsed files
267+
*.sage.py
268+
269+
# Environments
270+
.env
271+
.venv
272+
env/
273+
venv/
274+
ENV/
275+
env.bak/
276+
venv.bak/
277+
278+
# Spyder project settings
279+
.spyderproject
280+
.spyproject
281+
282+
# Rope project settings
283+
.ropeproject
284+
285+
# mkdocs documentation
286+
/site
287+
288+
# mypy
289+
.mypy_cache/
290+
.dmypy.json
291+
dmypy.json
292+
293+
# Pyre type checker
294+
.pyre/
295+
296+
# pytype static type analyzer
297+
.pytype/
298+
299+
# Cython debug symbols
300+
cython_debug/
301+
302+
# PyCharm
303+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
304+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
305+
# and can be added to the global gitignore or merged into this file. For a more nuclear
306+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
307+
#.idea/
308+
309+
### Python Patch ###
310+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
311+
poetry.toml
312+
313+
# ruff
314+
.ruff_cache/
315+
316+
# LSP config files
317+
pyrightconfig.json
318+
319+
### VisualStudioCode ###
320+
.vscode/*
321+
!.vscode/settings.json
322+
!.vscode/tasks.json
323+
!.vscode/launch.json
324+
!.vscode/extensions.json
325+
!.vscode/*.code-snippets
326+
327+
# Local History for Visual Studio Code
328+
.history/
329+
330+
# Built Visual Studio Code Extensions
331+
*.vsix
332+
333+
### VisualStudioCode Patch ###
334+
# Ignore all local history of files
335+
.history
336+
.ionide
337+
338+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,pycharm,python
339+
340+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
341+

‎.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/Spy.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /