Skip to content

Commit 4dbd77e

Browse files
authoredApr 9, 2024
Initialize Template-GitHub-Pages-language
0 parents  commit 4dbd77e

File tree

720 files changed

+214183
-0
lines changed

Some content is hidden

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

720 files changed

+214183
-0
lines changed
 

‎.editorconfig

+214
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
# Start of script
2+
3+
# Editor configuration file for Seanpm2001/<projectName>
4+
# Generated with Git-Template (V8) at branch: /Template-GitHub-Pages-language/
5+
6+
root = true
7+
8+
# All files
9+
[*]
10+
indent_style = space
11+
indent_size = 2
12+
end_of_line = lf
13+
charset = utf-8
14+
trim_trailing_whitespace = false
15+
insert_final_newline = false
16+
line_wrap_mode = soft wrap
17+
18+
# Markdown document
19+
[*.md *.mkd *.mdown *.markdown]
20+
indent_style = space
21+
indent_size = 2
22+
end_of_line = lf
23+
charset = utf-8
24+
trim_trailing_whitespace = false
25+
insert_final_newline = false
26+
line_wrap_mode = soft wrap
27+
28+
# YAML (YAML Ain't Markup Language) source code
29+
[*.yml *.yaml]
30+
indent_style = space
31+
indent_size = 2
32+
end_of_line = lf
33+
charset = utf-8
34+
trim_trailing_whitespace = false
35+
insert_final_newline = false
36+
line_wrap_mode = soft wrap
37+
38+
# Plain Text document
39+
[*.txt]
40+
indent_style = space
41+
indent_size = 2
42+
end_of_line = lf
43+
charset = utf-8
44+
trim_trailing_whitespace = false
45+
insert_final_newline = false
46+
line_wrap_mode = soft wrap
47+
48+
# Makefile (GNU Make)
49+
[*.mk *.mak *.make *.makefile]
50+
indent_style = space
51+
indent_size = 2
52+
end_of_line = lf
53+
charset = utf-8
54+
trim_trailing_whitespace = false
55+
insert_final_newline = false
56+
line_wrap_mode = soft wrap
57+
58+
# HTML (HyperText Markup Language) document
59+
[*.htm *.html *.mhtm *.mhtml *.xhtm *.xhtml]
60+
indent_style = space
61+
indent_size = 2
62+
end_of_line = lf
63+
charset = utf-8
64+
trim_trailing_whitespace = false
65+
insert_final_newline = false
66+
line_wrap_mode = soft wrap
67+
68+
# SVG (Scalable Vector Graphics) image file
69+
[*.svg]
70+
indent_style = space
71+
indent_size = 2
72+
end_of_line = lf
73+
charset = utf-8
74+
trim_trailing_whitespace = false
75+
insert_final_newline = false
76+
line_wrap_mode = soft wrap
77+
78+
# CSS (Cascade Styling Sheets) stylesheet file
79+
[*.css]
80+
indent_style = space
81+
indent_size = 2
82+
end_of_line = lf
83+
charset = utf-8
84+
trim_trailing_whitespace = false
85+
insert_final_newline = false
86+
line_wrap_mode = soft wrap
87+
88+
# Less stylesheet file
89+
[*.less]
90+
indent_style = space
91+
indent_size = 2
92+
end_of_line = lf
93+
charset = utf-8
94+
trim_trailing_whitespace = false
95+
insert_final_newline = false
96+
line_wrap_mode = soft wrap
97+
98+
# QML (QT Modeling Language) source file
99+
[*.qml]
100+
indent_style = space
101+
indent_size = 2
102+
end_of_line = lf
103+
charset = utf-8
104+
trim_trailing_whitespace = false
105+
insert_final_newline = false
106+
line_wrap_mode = soft wrap
107+
108+
# JS (JavaScript) source file
109+
[*.js]
110+
indent_style = space
111+
indent_size = 2
112+
end_of_line = lf
113+
charset = utf-8
114+
trim_trailing_whitespace = false
115+
insert_final_newline = false
116+
line_wrap_mode = soft wrap
117+
118+
# JSON (JavaScript Object Notation) source file
119+
[*.json]
120+
indent_style = space
121+
indent_size = 2
122+
end_of_line = lf
123+
charset = utf-8
124+
trim_trailing_whitespace = false
125+
insert_final_newline = false
126+
line_wrap_mode = soft wrap
127+
128+
# PHP (PHP Hypertext Preprocessor) source file
129+
[*.php]
130+
indent_style = space
131+
indent_size = 2
132+
end_of_line = lf
133+
charset = utf-8
134+
trim_trailing_whitespace = false
135+
insert_final_newline = false
136+
line_wrap_mode = soft wrap
137+
138+
# Ruby source file
139+
[*.rb *.rake *.rakefile *GEMFILE]
140+
indent_style = space
141+
indent_size = 2
142+
end_of_line = lf
143+
charset = utf-8
144+
trim_trailing_whitespace = false
145+
insert_final_newline = false
146+
line_wrap_mode = soft wrap
147+
148+
# Python source file
149+
[*.py]
150+
indent_style = space
151+
indent_size = 2
152+
end_of_line = lf
153+
charset = utf-8
154+
trim_trailing_whitespace = false
155+
insert_final_newline = false
156+
line_wrap_mode = soft wrap
157+
158+
# Pug source file
159+
[*.pug]
160+
indent_style = space
161+
indent_size = 2
162+
end_of_line = lf
163+
charset = utf-8
164+
trim_trailing_whitespace = false
165+
insert_final_newline = false
166+
line_wrap_mode = soft wrap
167+
168+
# Mustache source file
169+
[*.mustache]
170+
indent_style = space
171+
indent_size = 2
172+
end_of_line = lf
173+
charset = utf-8
174+
trim_trailing_whitespace = false
175+
insert_final_newline = false
176+
line_wrap_mode = soft wrap
177+
178+
# Handlebars source file
179+
[*.handlebars *.hbs]
180+
indent_style = space
181+
indent_size = 2
182+
end_of_line = lf
183+
charset = utf-8
184+
trim_trailing_whitespace = false
185+
insert_final_newline = false
186+
line_wrap_mode = soft wrap
187+
188+
# Git configuration files
189+
[*.gitignore *.gitattributes *.editorconfig]
190+
indent_style = space
191+
indent_size = 2
192+
end_of_line = lf
193+
charset = utf-8
194+
trim_trailing_whitespace = false
195+
insert_final_newline = false
196+
line_wrap_mode = soft wrap
197+
198+
# Binary image files
199+
[*.png *.pns *.jpg *.jpeg *.jfif *.jif *.jp2 *.gif *.tif *.tiff *.bmp *.dib]
200+
indent_style = space
201+
indent_size = 2
202+
end_of_line = lf
203+
charset = utf-8
204+
trim_trailing_whitespace = false
205+
insert_final_newline = false
206+
line_wrap_mode = soft wrap
207+
208+
# File info
209+
210+
# File type: Editorconfig file (*.editorconfig)
211+
# File version: 3 (Monday, 2021 November 29th at 3:23 pm)
212+
# Line count (including blank lines and compiler line) 215
213+
214+
# End of script

‎.gitattributes

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# Start of script
2+
# .gitattributes
3+
# This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project.
4+
# Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file
5+
# .gitattributes
6+
# and nothing else, no characters before, no characters after
7+
# Start of linguist script
8+
# HTML (HyperText Markup Language) document
9+
*.htm linguist-detectable=true
10+
*.htm linguist-documentation=false
11+
*.html linguist-detectable=true
12+
*.html linguist-documentation=false
13+
*.mhtm linguist-detectable=true
14+
*.mhtm linguist-documentation=false
15+
*.mhtml linguist-detectable=true
16+
*.mhtml linguist-documentation=false
17+
*.xhtm linguist-detectable=true
18+
*.xhtm linguist-documentation=false
19+
*.xhtml linguist-detectable=true
20+
*.xhtml linguist-documentation=false
21+
# HTA (HTML Application) file
22+
*.hta linguist-detectable=true
23+
*.hta linguist-documentation=false
24+
# CSS (Cascade Styling Sheets) stylesheet file
25+
*.css linguist-detectable=true
26+
*.css linguist-documentation=false
27+
# Less stylesheet file
28+
*.less linguist-detectable=true
29+
*.less linguist-documentation=false
30+
# QML (QT Modeling Language) source file
31+
*.qml linguist-detectable=true
32+
*.qml linguist-documentation=false
33+
# JS (JavaScript) source file
34+
*.js linguist-detectable=true
35+
*.js linguist-documentation=false
36+
# JSON (JavaScript Object Notation) source file
37+
*.json linguist-detectable=true
38+
*.json linguist-documentation=false
39+
# PHP (PHP HyperText Preprocessor) source file
40+
*.php linguist-detectable=true
41+
*.php linguist-documentation=false
42+
# Pug source file
43+
*.pug linguist-detectable=true
44+
*.pug linguist-documentation=false
45+
# Python source file
46+
*.py linguist-detectable=true
47+
*.py linguist-documentation=false
48+
# Mustache source file
49+
*.mustache linguist-detectable=true
50+
*.mustache linguist-documentation=false
51+
# Handlebars source file
52+
*.handlebars linguist-detectable=true
53+
*.handlebars linguist-documentation=false
54+
*.hbs linguist-detectable=true
55+
*.hbs linguist-documentation=false
56+
# WebVTT subtitle file
57+
*.vtt linguist-detectable=true
58+
*.vtt linguist-documentation=false
59+
# SubRip subtitle file
60+
*.srt linguist-detectable=true
61+
*.srt linguist-documentation=false
62+
# Ruby source file
63+
*.rb linguist-detectable=true
64+
*.rb linguist-documentation=false
65+
*.rake linguist-detectable=true
66+
*.rake linguist-documentation=false
67+
*.rakefile linguist-detectable=true
68+
*.rakefile linguist-documentation=false
69+
*gemfile linguist-detectable=true
70+
*gemfile linguist-documentation=false
71+
# YAML (YAML Ain't Markup Language) document
72+
# Do not include, as it would become a dominant language that shouldn't be the language people refer this project to
73+
*.yml linguist-detectable=false
74+
*.yml linguist-documentation=false
75+
*.yaml linguist-detectable=false
76+
*.yaml linguist-documentation=false
77+
# Markdown
78+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
79+
*.md linguist-detectable=false
80+
*.md linguist-documentation=false
81+
*.mkd linguist-detectable=false
82+
*.mkd linguist-documentation=false
83+
*.mdown linguist-detectable=false
84+
*.mdown linguist-documentation=false
85+
*.markdown linguist-detectable=false
86+
*.markdown linguist-documentation=false
87+
# Makefile (GNU Make)
88+
# Do not include, as it is not needed to be shown
89+
*.mk linguist-detectable=false
90+
*.mk linguist-documentation=false
91+
*.mak linguist-detectable=false
92+
*.mak linguist-documentation=false
93+
*.make linguist-detectable=false
94+
*.make linguist-documentation=false
95+
*.makefile linguist-detectable=false
96+
*.makefile linguist-documentation=false
97+
# SVG (Scalable Vector Graphics) image file
98+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
99+
*.svg linguist-detectable=false
100+
*.svg linguist-documentation=false
101+
# Git Configuration files
102+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
103+
*.gitattributes linguist-detectable=false
104+
*.gitattributes linguist-documentation=false
105+
*.gitignore linguist-detectable=false
106+
*.gitignore linguist-documentation=false
107+
*.editorconfig linguist-detectable=false
108+
*.editorconfig linguist-documentation=false
109+
# Plain Text document
110+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
111+
*.txt linguist-detectable=false
112+
*.txt linguist-documentation=false
113+
# End of linguist script
114+
# File info
115+
# File type: gitattributes file (.gitattributes)
116+
# File version: 3 (Monday, 2021 November 29th at 3:16 pm)
117+
# Line count (including blank lines and compiler line): 119
118+
# End of script

0 commit comments

Comments
 (0)