Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 06ffa33

Browse files
committed
Initial Release
1 parent 0d955b9 commit 06ffa33

26 files changed

+1959
-2
lines changed

.gitattributes

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
#
2+
# The file was created by KitsuneLab - Entity (@Sples1)
3+
#
4+
# Auto detect text files and perform LF normalization
5+
* text=auto
6+
7+
#
8+
# The above will handle all files NOT found below
9+
#
10+
# These files are text and should be normalized (Convert crlf => lf)
11+
*.gitattributes text
12+
.gitignore text
13+
*.md text diff=markdown
14+
.gitkeep export-ignore
15+
16+
#
17+
# Exclude files from exporting
18+
#
19+
20+
.gitignore export-ignore
21+
.gitattributes export-ignore
22+
.gitkeep export-ignore
23+
24+
#
25+
# Enable syntax highlighting for files with `.gitattributes` extensions.
26+
#
27+
*.gitattributes linguist-language=gitattributes
28+
29+
#
30+
# SourcePawn
31+
#
32+
*.sp linguist-language=SourcePawn
33+
*.inc linguist-language=SourcePawn
34+
35+
# Documents
36+
*.bibtex text diff=bibtex
37+
*.doc diff=astextplain
38+
*.DOC diff=astextplain
39+
*.docx diff=astextplain
40+
*.DOCX diff=astextplain
41+
*.dot diff=astextplain
42+
*.DOT diff=astextplain
43+
*.pdf diff=astextplain
44+
*.PDF diff=astextplain
45+
*.rtf diff=astextplain
46+
*.RTF diff=astextplain
47+
*.md text diff=markdown
48+
*.tex text diff=tex
49+
*.adoc text
50+
*.textile text
51+
*.mustache text
52+
*.csv text
53+
*.tab text
54+
*.tsv text
55+
*.txt text
56+
*.sql text
57+
58+
# Graphics
59+
*.png binary
60+
*.jpg binary
61+
*.jpeg binary
62+
*.gif binary
63+
*.tif binary
64+
*.tiff binary
65+
*.ico binary
66+
# SVG treated as text by default.
67+
*.svg text
68+
# If you want to treat it as binary,
69+
# use the following line instead.
70+
# *.svg binary
71+
*.eps binary
72+
73+
# Scripts
74+
*.bash text eol=lf
75+
*.fish text eol=lf
76+
*.sh text eol=lf
77+
*.zsh text eol=lf
78+
# These are explicitly windows files and should use crlf
79+
*.bat text eol=crlf
80+
*.cmd text eol=crlf
81+
*.ps1 text eol=crlf
82+
83+
# Serialisation
84+
*.json text
85+
*.toml text
86+
*.xml text
87+
*.yaml text
88+
*.yml text
89+
90+
# Archives
91+
*.7z binary
92+
*.gz binary
93+
*.tar binary
94+
*.tgz binary
95+
*.zip binary
96+
97+
# Text files where line endings should be preserved
98+
*.patch -text

.gitignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
#
2+
# The file was created by KitsuneLab - Entity (@Sples1)
3+
#
4+
### KitsuneLab ###
5+
# Folders
6+
.build/
7+
.vanish/
8+
9+
# SourcePawn
10+
*.smx
11+
12+
# Others
13+
*.exe
14+
*.dat
15+
16+
### VisualStudioCode ###
17+
.vscode/
18+
.vs/
19+
*.code-workspace
20+
21+
# Local History for Visual Studio Code
22+
.history/
23+
24+
### VisualStudioCode Patch ###
25+
# Ignore all local history of files
26+
.history
27+
.ionide
28+
29+
### Windows ###
30+
# Windows thumbnail cache files
31+
Thumbs.db
32+
Thumbs.db:encryptable
33+
ehthumbs.db
34+
ehthumbs_vista.db
35+
36+
# Dump file
37+
*.stackdump
38+
39+
# Folder config file
40+
[Dd]esktop.ini
41+
42+
# Recycle Bin used on file shares
43+
$RECYCLE.BIN/
44+
45+
# Windows Installer files
46+
*.cab
47+
*.msi
48+
*.msix
49+
*.msm
50+
*.msp
51+
52+
# Windows shortcuts
53+
*.lnk
54+
55+
# macOS-specific files and directories to ignore
56+
.DS_Store
57+
.AppleDouble/
58+
__MACOSX/
59+
60+
# Remove dotnet normal build
61+
bin/
62+
obj/
63+
*.sln

CHANGELOG.md

Whitespace-only changes.

CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# The owner of everything in this repository
2+
* @K4ryuu

0 commit comments

Comments
 (0)