Skip to content

Commit 5c3ab85

Browse files
committedJan 6, 2022
feat: initial project commit
0 parents  commit 5c3ab85

Some content is hidden

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

49 files changed

+2147
-0
lines changed
 

‎.editorconfig

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# http://editorconfig.org
2+
3+
# This is the project's root directory
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
# The files are utf-8 encoded
9+
charset = utf-8
10+
# Each indent should contain 2 spaces
11+
indent_size = 2
12+
# Use Unix line endings
13+
end_of_line = lf
14+
# Use spaces for indentation
15+
indent_style = space
16+
# A file must end with an empty line - this is good for version control systems
17+
insert_final_newline = true
18+
# No whitespace at the end of line
19+
trim_trailing_whitespace = true
20+
21+
# ================================================
22+
# 4 SPACE INDENTATION
23+
# ================================================
24+
25+
[{Makefile,**.mk}]
26+
indent_size = 4
27+
indent_style = tab
28+
29+
# ================================================
30+
# 2 SPACE INDENTATION
31+
# ================================================
32+
33+
[*.{md,Rmd,rst}]
34+
trim_trailing_whitespace = false

‎.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @lpmatos

0 commit comments

Comments
 (0)