Skip to content

Commit a06b335

Browse files
vitormattosmikehaertl
authored andcommitted
feat: implement dotfiles
- .editorconfig: make possible some ide to be automatic configured using the project patterns - .github/dependabot.yml: make possible update dependencies when this is updated Signed-off-by: Vitor Mattos <[email protected]>
1 parent bca870d commit a06b335

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# https://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 4
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false
15+
16+
[*.json]
17+
indent_size = 2
18+
indent_style = space
19+
20+
[*.xml]
21+
indent_size = 2
22+
indent_style = space

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for Composer
4+
- package-ecosystem: "composer"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: daily

0 commit comments

Comments
 (0)