Skip to content

Commit a23c787

Browse files
authored
Initial commit
0 parents  commit a23c787

13 files changed

+263
-0
lines changed

.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# http://editorconfig.org
2+
3+
# ---------------------------------------------------------------------
4+
# DO NOT CHANGE THIS SECTION
5+
6+
root = true
7+
8+
[*]
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
charset = utf-8
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.md]
17+
trim_trailing_whitespace = false
18+
19+
# ---------------------------------------------------------------------
20+
# Add specific rules here… (Note: What you add can have an effect on Prettier)

.github/CODEOWNERS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2+
3+
# ---------------------------------------------------------------------
4+
# DO NOT CHANGE THIS SECTION
5+
6+
# These owners will be the default owners for everything in the repo. Unless a
7+
# later match takes precedence.
8+
* @daveordead @rairaman
9+
10+
# ---------------------------------------------------------------------
11+
# Add specific owners here…

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# https://git-scm.com/docs/gitignore
2+
3+
# ---------------------------------------------------------------------
4+
# DO NOT CHANGE THIS SECTION
5+
6+
# Dependencies
7+
node_modules/
8+
9+
# Compiled output
10+
dist/
11+
build/
12+
coverage/
13+
14+
# Generated at runtime
15+
*.log
16+
.cache
17+
18+
# Personal files
19+
.idea
20+
21+
# System files
22+
.DS_Store
23+
24+
# ---------------------------------------------------------------------
25+
# Add specific rules here…

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
build/
3+
coverage/

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "none",
4+
"bracketSpacing": false,
5+
"proseWrap": "never",
6+
"overrides": []
7+
}

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"yzhang.markdown-all-in-one",
4+
"editorconfig.editorconfig",
5+
"esbenp.prettier-vscode"
6+
]
7+
}

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"editor.codeActionsOnSave": {"source.fixAll": true},
4+
"editor.formatOnSave": true,
5+
"files.trimTrailingWhitespace": true,
6+
"markdown.extension.italic.indicator": "_",
7+
"markdown.extension.toc.unorderedList.marker": "-",
8+
"markdown.extension.toc.slugifyMode": "github",
9+
"markdown.preview.fontFamily": "system-ui, -apple-system, sans-serif",
10+
"files.associations": {
11+
"CODEOWNERS": "ini"
12+
}
13+
}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!-- Ideally, this should get auto-generated via tools like [auto-changelog](https://github.com/CookPete/auto-changelog). Eventually, this will get set up as part of the repository template. -->

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Kinde
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Please use one of these templates:
2+
3+
- [README_template_non-generator.md](./README_template_non-generator.md)
4+
- [README_template_generator.md](./README_template_generator.md)

0 commit comments

Comments
 (0)