Skip to content

Commit 7c4051e

Browse files
author
Abdul Dakkak
committed
initial commit
0 parents  commit 7c4051e

File tree

4 files changed

+745
-0
lines changed

4 files changed

+745
-0
lines changed

.agignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.git
2+
/tmp
3+
/vendor
4+
node_modules

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# editorconfig.org
2+
3+
# This is the project's root directory
4+
root = true
5+
6+
[*]
7+
# Use spaces for indentation
8+
indent_style = space
9+
# Each indent should contain 2 spaces
10+
indent_size = 2
11+
# Use Unix line endings
12+
end_of_line = lf
13+
# The files are utf-8 encoded
14+
charset = utf-8
15+
# No whitespace at the end of line
16+
trim_trailing_whitespace = true
17+
# A file must end with an empty line - this is good for version control systems
18+
insert_final_newline = true
19+
# A line should not have more than this amount of chars (not supported by all plugins)
20+
max_line_length = 100
21+
22+
[{Makefile,**.mk}]
23+
# Use tabs for indentation (Makefiles require tabs)
24+
indent_style = tab
25+
26+
[VERSION]
27+
insert_final_newline = false

0 commit comments

Comments
 (0)