Skip to content

Commit 1914f2b

Browse files
authored
Merge pull request #23 from hentai-chan/revamp
Revamp Project
2 parents ddab83c + c851514 commit 1914f2b

File tree

496 files changed

+720
-88193
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

496 files changed

+720
-88193
lines changed

.gitattributes

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Documents
5+
*.bibtex text diff=bibtex
6+
*.doc diff=astextplain
7+
*.DOC diff=astextplain
8+
*.docx diff=astextplain
9+
*.DOCX diff=astextplain
10+
*.dot diff=astextplain
11+
*.DOT diff=astextplain
12+
*.pdf diff=astextplain
13+
*.PDF diff=astextplain
14+
*.rtf diff=astextplain
15+
*.RTF diff=astextplain
16+
*.md text
17+
*.tex text diff=tex
18+
*.adoc text
19+
*.textile text
20+
*.mustache text
21+
*.csv text
22+
*.tab text
23+
*.tsv text
24+
*.txt text
25+
*.sql text
26+
27+
# Source code
28+
*.bash text eol=lf
29+
*.bat text eol=crlf
30+
*.cmd text eol=crlf
31+
*.coffee text
32+
*.css text
33+
*.htm text diff=html
34+
*.html text diff=html
35+
*.inc text
36+
*.ini text
37+
*.js text
38+
*.json text
39+
*.jsx text
40+
*.less text
41+
*.ls text
42+
*.map text -diff
43+
*.od text
44+
*.onlydata text
45+
*.php text diff=php
46+
*.pl text
47+
*.ps1 text eol=crlf
48+
*.py text diff=python
49+
*.rb text diff=ruby
50+
*.sass text
51+
*.scm text
52+
*.scss text diff=css
53+
*.sh text eol=lf
54+
*.sql text
55+
*.styl text
56+
*.tag text
57+
*.ts text
58+
*.tsx text
59+
*.xml text
60+
*.xhtml text diff=html
61+
62+
# Documentation
63+
*.ipynb text
64+
*.markdown text
65+
*.md text
66+
*.mdwn text
67+
*.mdown text
68+
*.mkd text
69+
*.mkdn text
70+
*.mdtxt text
71+
*.mdtext text
72+
*.txt text
73+
AUTHORS text
74+
CHANGELOG text
75+
CHANGES text
76+
CONTRIBUTING text
77+
COPYING text
78+
copyright text
79+
*COPYRIGHT* text
80+
INSTALL text
81+
license text
82+
LICENSE text
83+
NEWS text
84+
readme text
85+
*README* text
86+
TODO text
87+
88+
# Configs
89+
*.bowerrc text
90+
*.cnf text
91+
*.conf text
92+
*.config text
93+
.babelrc text
94+
.browserslistrc text
95+
.editorconfig text
96+
.env text
97+
.gitattributes text
98+
.gitconfig text
99+
.htaccess text
100+
.mocharc text
101+
.nycrc text
102+
.prettierrc text
103+
.prettierignore text
104+
*.lock text -diff
105+
package-lock.json text -diff
106+
*.npmignore text
107+
*.toml text
108+
*.yaml text
109+
*.yml text
110+
browserslist text
111+
Makefile text
112+
makefile text
113+
114+
# Graphics
115+
*.png binary
116+
*.jpg binary
117+
*.jpeg binary
118+
*.gif binary
119+
*.tif binary
120+
*.tiff binary
121+
*.ico binary
122+
*.svg text
123+
*.eps binary
124+
125+
# Scripts
126+
*.bash text eol=lf
127+
*.fish text eol=lf
128+
*.sh text eol=lf
129+
*.bat text eol=crlf
130+
*.cmd text eol=crlf
131+
*.ps1 text eol=crlf
132+
133+
# Serialisation
134+
*.json text
135+
*.toml text
136+
*.xml text
137+
*.yaml text
138+
*.yml text
139+
140+
# Archives
141+
*.7z binary
142+
*.gz binary
143+
*.tar binary
144+
*.tgz binary
145+
*.zip binary
146+
147+
# Text files where line endings should be preserved
148+
*.patch -text
149+
150+
# Exclude files from exporting
151+
.gitattributes export-ignore
152+
.gitignore export-ignore
153+
154+
# Executables
155+
*.exe binary
156+
*.pyc binary

.gitignore

Lines changed: 137 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,138 @@
1-
.idea/
2-
tests
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+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# IPython
81+
profile_default/
82+
ipython_config.py
83+
84+
# pyenv
85+
.python-version
86+
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
98+
celerybeat-schedule
99+
celerybeat.pid
100+
101+
# SageMath parsed files
102+
*.sage.py
103+
104+
# Environments
105+
.env
106+
.venv
107+
env/
3108
venv/
4-
venvw/
109+
ENV/
110+
env.bak/
111+
venv.bak/
112+
113+
# Spyder project settings
114+
.spyderproject
115+
.spyproject
116+
117+
# Vscode project
118+
.vscode
119+
120+
# Rope project settings
121+
.ropeproject
122+
123+
# mkdocs documentation
124+
/site
125+
126+
# mypy
127+
.mypy_cache/
128+
.dmypy.json
129+
dmypy.json
130+
131+
# Pyre type checker
132+
.pyre/
133+
134+
# untracked dev files
135+
test-*.py
136+
137+
# intelliJ’s project specific settings files
138+
.idea

.idea/misc.xml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)