Skip to content

Commit

Permalink
refactor: Reorganize source code
Browse files Browse the repository at this point in the history
Increased maintainability
  • Loading branch information
Göran Sander committed Aug 16, 2023
1 parent c488cc4 commit e4febe6
Show file tree
Hide file tree
Showing 24 changed files with 11,737 additions and 19,197 deletions.
29 changes: 23 additions & 6 deletions src/.dockerignore → .dockerignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
.DS_Store
.codeclimate.yml
.editorconfig
.gitattributes
.git
.github
.release-please-manifest.json
.vscode
.dockerignore
.eslintrc.yml
.gitignore
.dockerignore
.eslintrc.yml
.jshintrc
.prettierignore
.prettierrc
.prettierrc.yaml
.snyk
.DS_Store
.cache_ggshield

__tests__
Expand All @@ -22,11 +30,20 @@ docker-compose.yml
package-lock.json
README.md

config
config/*
k8s
k8s/*
docker-compose.yml
Dockerfile
img
scriptlog
log
node_modules
package-lock.json
renovate.json
release
release-macos
release-config
release-please-config.jsonk8s
k8s/*
udp_client
udp_client/*
src/jest.config.js
src/log
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
end_of_line = lf
charset = utf-8
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
insert_final_newline = false

[{,test/}{actual,fixtures}/**]
trim_trailing_whitespace = false
insert_final_newline = false

[templates/**]
trim_trailing_whitespace = false
insert_final_newline = false
File renamed without changes.
Loading

0 comments on commit e4febe6

Please sign in to comment.