This repository was archived by the owner on Oct 18, 2023. It is now read-only.
  
  
  
  
    
    
    
      
    
  
  
    
File tree Expand file tree Collapse file tree 9 files changed +846
-0
lines changed Expand file tree Collapse file tree 9 files changed +846
-0
lines changed Original file line number Diff line number Diff line change 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 
Original file line number Diff line number Diff line change 1+ --- 
2+ name : Bug report 
3+ about : Create a report to help us improve 
4+ title : " [BUG]" 
5+ labels : bug 
6+ assignees : K4ryuu 
7+ 
8+ --- 
9+ 
10+ ** Describe the bug** 
11+ A clear and concise description of what the bug is.
12+ 
13+ ** To Reproduce** 
14+ Steps to reproduce the behavior:
15+ 1 .  Go to '...'
16+ 2 .  Click on '....'
17+ 3 .  See error
18+ 
19+ ** Expected behavior** 
20+ A clear and concise description of what you expected to happen.
21+ 
22+ ** Media (Optional)** 
23+ If applicable, add screenshots or videos to help explain your problem.
24+ 
25+ ** Logs (Optional)** 
26+ If applicable, add logs to help explain your problem.
27+ 
28+ ** Additional context (Optional)** 
29+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ --- 
2+ name : Feature request 
3+ about : Suggest an idea for this project 
4+ title : " [REQ]" 
5+ labels : enhancement 
6+ assignees : K4ryuu 
7+ 
8+ --- 
9+ 
10+ ** Is your feature request related to a problem? Please describe.** 
11+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...] 
12+ 
13+ ** Describe the solution you'd like** 
14+ A clear and concise description of what you want to happen.
15+ 
16+ ** Describe alternatives you've considered** 
17+ A clear and concise description of any alternative solutions or features you've considered.
18+ 
19+ ** Additional context** 
20+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change 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 
Original file line number Diff line number Diff line change 1+ #  The owner of everything in this repository
2+ *        @ K4ryuu 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments