Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenesvk authored Apr 6, 2024
0 parents commit 64d90b2
Show file tree
Hide file tree
Showing 7 changed files with 150 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
root = true # this is the top-most EditorConfig file (EditorConfig.org)

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

[*.{yml,json}]
indent_size = 2

[*.{md,markdown}]
trim_trailing_whitespace = false # don't trim trailing spaces because markdown syntax allows that
[{makefile,Makefile,MAKEFILE}]
indent_style = tab
[justfile]
indent_style = tab
[{.travis.yml, TODO}]
indent_style = space
indent_size = 2
6 changes: 6 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Hi! Thank you for the repo, I gave it a star!

My issue is that ...

## For community
⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**
6 changes: 6 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Hi! Thank you for the repo, I gave it a star!

Please take a look at my PR that ...

## For community
⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**
60 changes: 60 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# templates github.com/github/gitignore
# test folder
\[test\]
# project's built/temp docs
Changelog.html
ReadMe.html
ToDo.html
ToDo.md

# vim
*~
.*.swp
# (macOS)
.DS_Store
.AppleDouble
.LSOverride
# (macOS)Icon must end with two \r
Icon

# (macOS)Thumbnails
._*
# (macOS)Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# (macOS)Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# (Windows) Thumbnails
Thumbs.db

# (Windows) Files build by Visual Studio
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
*.dll
*.lib
*.sbr
26 changes: 26 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog
All notable changes to this project will be documented in this file

[unreleased]: https://github.com/eugenesvk/DUMMY/compare/0.0.0...HEAD
## [Unreleased]
<!-- - __Added__ -->
<!-- + :sparkles: -->
<!-- new features -->
<!-- - __Changed__ -->
<!-- + -->
<!-- changes in existing functionality -->
<!-- - __Fixed__ -->
<!-- + :beetle: -->
<!-- bug fixes -->
<!-- - __Deprecated__ -->
<!-- + :poop: -->
<!-- soon-to-be removed features -->
<!-- - __Removed__ -->
<!-- + :wastebasket: -->
<!-- now removed features -->
<!-- - __Security__ -->
<!-- + :lock: -->
<!-- vulnerabilities -->

[0.0.0]: https://github.com/eugenesvk/DUMMY/releases/tag/0.0.0
## [0.0.0]
7 changes: 7 additions & 0 deletions License
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
MIT License

© eugenesvk and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
- The software is provided "AS IS", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.
20 changes: 20 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<p align="center">
Brief description
<br>
(description continued)
</p>

<p align="center">
description continued
</p>


## Introduction

## Install

## Use

## Known issues

## Credits

0 comments on commit 64d90b2

Please sign in to comment.