Skip to content

Commit

Permalink
chore: Create .editorconfig and .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Sep 8, 2023
1 parent 36f4b34 commit e4b3c76
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
max_line_length = off
[*.go]
indent_style = tab
[Makefile]
indent_style = tab
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Mac
.DS_Store

# Editor
.vscode
.idea

# Generic
*.log
*.backup

# Go
redirect-server
*.exe
/dist/**
cobra-docs

0 comments on commit e4b3c76

Please sign in to comment.