Skip to content

Commit de520ff

Browse files
committedSep 29, 2020
.
1 parent 3d3f371 commit de520ff

File tree

3 files changed

+13
-24
lines changed

3 files changed

+13
-24
lines changed
 

‎.editorconfig

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
# Editor configuration - http://editorconfig.org
21
root = true
32

43
[*]
54
charset = utf-8
65
end_of_line = lf
6+
max_line_length = 140
77
indent_size = 2
88
indent_style = space
99
insert_final_newline = true
10-
max_line_length = 140
1110
trim_trailing_whitespace = true
1211

1312
[*.md]

‎.gitattributes

+1-15
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
1-
# https://html5boilerplate.com/
2-
3-
## GITATTRIBUTES FOR WEB PROJECTS
4-
#
5-
# These settings are for any web project.
6-
#
7-
# Details per file setting:
8-
# text These files should be normalized (i.e. convert CRLF to LF).
9-
# binary These files are binary and should be left untouched.
10-
#
11-
# Note that binary is a macro for -text -diff.
12-
######################################################################
1+
# https://html5boilerplate.com
132

143
## AUTO-DETECT
15-
## Handle line endings automatically for files detected as
16-
## text and leave all files detected as binary untouched.
17-
## This will handle all files NOT defined below.
184
* text=auto
195

206
## SOURCE CODE

‎.gitignore

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
1-
# --------------------------------------------------------------------------------------------------------------------------------- Git only
2-
31
# Compiled output
42
/dist
53
/documentation
64
/out-tsc
75
/tmp
86

7+
# Composer
8+
vendor
9+
composer.lock
10+
911
# Dependencies
1012
/node_modules
13+
package-lock.json
1114

1215
# IDEs + Editors
1316
*.launch
1417
*.sublime-workspace
15-
.c9/
18+
/.idea
19+
.c9
1620
.classpath
21+
.history
1722
.project
18-
.settings/
19-
/.idea
23+
.settings
2024

2125
# IDE - VSCode
26+
.vscode/*
2227
!.vscode/extensions.json
2328
!.vscode/launch.json
2429
!.vscode/settings.json
2530
!.vscode/tasks.json
26-
.vscode/*
2731

2832
# Misc
2933
/.sass-cache
@@ -32,6 +36,7 @@
3236
/libpeerconnection.log
3337
/typings
3438
npm-debug.log
39+
php_errorlog
3540
testem.log
3641
yarn-error.log
3742

@@ -40,4 +45,3 @@ yarn-error.log
4045
*desktop.ini
4146
.DS_Store
4247
Thumbs.db
43-

0 commit comments

Comments
 (0)
Please sign in to comment.