Skip to content

Commit 21a4fe1

Browse files
author
evilebottnawi
committed
Chore: prepare 4.0.4 release.
1 parent 8ac5b34 commit 21a4fe1

15 files changed

+3035
-2684
lines changed

.editorconfig

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
1-
# editorconfig.org
1+
# For more information please visit http://editorconfig.org
22
root = true
33

44
[*]
55
indent_style = space
6-
indent_size = 4
6+
indent_size = 2
77
end_of_line = lf
88
charset = utf-8
99
trim_trailing_whitespace = true
1010
insert_final_newline = true
11+
12+
[*.php]
13+
indent_size = 4
14+
15+
[*.py]
16+
indent_size = 4
17+
18+
[*.{xml,xml.dist}]
19+
indent_size = 4

.eslintignore

-1
This file was deleted.

.gitattributes

+188-32
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,197 @@
1-
# Autodetect text files
1+
## GITATTRIBUTES FOR WEB PROJECTS
2+
#
3+
# These settings are for any web project.
4+
#
5+
# Details per file setting:
6+
# text These files should be normalized (i.e. convert CRLF to LF).
7+
# binary These files are binary and should be left untouched.
8+
#
9+
# Note that binary is a macro for -text -diff.
10+
######################################################################
11+
12+
## AUTO-DETECT
13+
## Handle line endings automatically for files detected as
14+
## text and leave all files detected as binary untouched.
15+
## This will handle all files NOT defined below.
216
* text=auto
317

4-
# ...Unless the name matches the following overriding patterns
5-
6-
# Definitively text files
7-
.* text eol=lf
8-
*.php text eol=lf
9-
*.css text eol=lf
10-
*.js text eol=lf
11-
*.html text eol=lf
12-
*.json text eol=lf
13-
*.less text eol=lf
14-
*.scss text eol=lf
15-
*.sass text eol=lf
16-
*.txt text eol=lf
17-
*.md text eol=lf
18-
*.xml text eol=lf
19-
*.json text eol=lf
20-
*.bat text eol=lf
21-
*.svg text eol=lf
22-
*.sql text eol=lf
23-
*.xml text eol=lf
24-
*.yml text eol=lf
25-
26-
# Ensure those won't be messed up with
18+
## Source code
19+
*.bat text eol=crlf
20+
*.coffee text
21+
*.css text
22+
*.htm text
23+
*.html text
24+
*.inc text
25+
*.ini text
26+
*.js text
27+
*.json text
28+
*.jsx text
29+
*.less text
30+
*.od text
31+
*.onlydata text
32+
*.php text
33+
*.pl text
34+
*.py text
35+
*.rb text
36+
*.sass text
37+
*.scm text
38+
*.scss text
39+
*.sh text eol=lf
40+
*.sql text
41+
*.styl text
42+
*.tag text
43+
*.ts text
44+
*.tsx text
45+
*.xml text
46+
*.xhtml text
47+
48+
## Docker
49+
*.dockerignore text
50+
Dockerfile text
51+
52+
## Documentation
53+
*.markdown text
54+
*.md text
55+
*.mdwn text
56+
*.mdown text
57+
*.mkd text
58+
*.mkdn text
59+
*.mdtxt text
60+
*.mdtext text
61+
*.txt text
62+
AUTHORS text
63+
CHANGELOG text
64+
CHANGES text
65+
CONTRIBUTING text
66+
COPYING text
67+
copyright text
68+
*COPYRIGHT* text
69+
INSTALL text
70+
license text
71+
LICENSE text
72+
NEWS text
73+
readme text
74+
*README* text
75+
TODO text
76+
77+
## Templates
78+
*.dot text
79+
*.ejs text
80+
*.haml text
81+
*.handlebars text
82+
*.hbs text
83+
*.hbt text
84+
*.jade text
85+
*.latte text
86+
*.mustache text
87+
*.njk text
88+
*.phtml text
89+
*.tmpl text
90+
*.tpl text
91+
*.twig text
92+
93+
## Linters
94+
.csslintrc text
95+
.eslintrc text
96+
.htmlhintrc text
97+
.jscsrc text
98+
.jshintrc text
99+
.jshintignore text
100+
.stylelintrc text
101+
102+
## Configs
103+
*.bowerrc text
104+
*.cnf text
105+
*.conf text
106+
*.config text
107+
.browserslistrc text
108+
.editorconfig text
109+
.gitattributes text
110+
.gitconfig text
111+
.gitignore text
112+
.htaccess text
113+
*.npmignore text
114+
*.yaml text
115+
*.yml text
116+
browserslist text
117+
Makefile text
118+
makefile text
119+
120+
## Heroku
121+
Procfile text
122+
.slugignore text
123+
124+
## Graphics
125+
*.ai binary
126+
*.bmp binary
127+
*.eps binary
128+
*.gif binary
27129
*.ico binary
28-
*.png binary
130+
*.jng binary
131+
*.jp2 binary
29132
*.jpg binary
30133
*.jpeg binary
134+
*.jpx binary
135+
*.jxr binary
136+
*.pdf binary
137+
*.png binary
138+
*.psb binary
139+
*.psd binary
140+
*.svg text
141+
*.svgz binary
142+
*.tif binary
143+
*.tiff binary
144+
*.wbmp binary
31145
*.webp binary
32-
*.gif binary
33-
*.eot binary
146+
147+
## Audio
148+
*.kar binary
149+
*.m4a binary
150+
*.mid binary
151+
*.midi binary
152+
*.mp3 binary
153+
*.ogg binary
154+
*.ra binary
155+
156+
## Video
157+
*.3gpp binary
158+
*.3gp binary
159+
*.as binary
160+
*.asf binary
161+
*.asx binary
162+
*.fla binary
163+
*.flv binary
164+
*.m4v binary
165+
*.mng binary
166+
*.mov binary
167+
*.mp4 binary
168+
*.mpeg binary
169+
*.mpg binary
170+
*.ogv binary
171+
*.swc binary
172+
*.swf binary
173+
*.webm binary
174+
175+
## Archives
176+
*.7z binary
177+
*.gz binary
178+
*.jar binary
179+
*.rar binary
180+
*.tar binary
181+
*.zip binary
182+
183+
## Fonts
34184
*.ttf binary
185+
*.eot binary
186+
*.otf binary
35187
*.woff binary
36188
*.woff2 binary
37-
*.mp3 binary
38-
*.m4a binary
39-
*.mp4 binary
40-
*.m4p binary
41-
*.acc binary
189+
190+
## Executables
191+
*.exe binary
192+
*.pyc binary
193+
194+
## Lock files
195+
package-lock.json -diff
196+
yarn.lock -diff
197+
composer.lock -diff

0 commit comments

Comments
 (0)