Skip to content

Commit 0614001

Browse files
committed
init: version 1.0.0
1 parent 8277f83 commit 0614001

23 files changed

+8760
-0
lines changed

.babelrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"comments": false,
3+
"presets": [
4+
[
5+
"@babel/preset-env",
6+
{
7+
"targets": {
8+
"node": "8.0.0"
9+
}
10+
}
11+
]
12+
],
13+
"plugins": []
14+
}

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false
14+
15+
[*.{yml,yaml}]
16+
indent_style = space

.eslintrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# YAML allows comments.
2+
root: true
3+
extends: [fullstack, prettier, prettier/react]
4+
rules:
5+
id-length: 0

.github/CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Contributing to this Project
2+
3+
Thank you for your interest! Please note that for pull requests to be merged, you should:
4+
5+
* Include unit tests
6+
* Add any relevant documentation
7+
* Reference any relevant issues

.github/ISSUE_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
_Write your issue description here_
2+
3+
---
4+
5+
For bugs, please include the following:
6+
7+
* What is the expected behavior?
8+
* What is the actual behavior?
9+
* What steps reproduce the behavior?

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
_Write your PR notes here_
2+
3+
---
4+
5+
### Assignee Tasks
6+
7+
* [ ] added unit tests
8+
* [ ] written relevant docs
9+
* [ ] referenced any relevant issues

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Precommit build flag hack
2+
.commit
3+
4+
# Build
5+
build
6+
dist
7+
8+
# Cache
9+
.eslintcache
10+
11+
# Packages
12+
node_modules
13+
bower_components
14+
15+
# OS-generated files
16+
.DS_Store
17+
.DS_Store?
18+
._*
19+
.Spotlight-V100
20+
.Trashes
21+
ehthumbs.db
22+
Thumbs.db
23+
24+
# Logs and databases
25+
*.log
26+
*.sqlite
27+
28+
# Vim swap files
29+
*.sw?
30+
31+
# IDE files
32+
.idea
33+
.vscode
34+
35+
# repos / submodules
36+
.git
37+
.svn

.npmignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Precommit build flag hack
2+
.commit
3+
4+
# Build
5+
!build
6+
dist
7+
8+
# Cache
9+
.eslintcache
10+
11+
# Packages
12+
node_modules
13+
bower_components
14+
15+
# OS-generated files
16+
.DS_Store
17+
.DS_Store?
18+
._*
19+
.Spotlight-V100
20+
.Trashes
21+
ehthumbs.db
22+
Thumbs.db
23+
24+
# Logs and databases
25+
*.log
26+
*.sqlite
27+
28+
# Vim swap files
29+
*.sw?
30+
31+
# IDE files
32+
.idea
33+
.vscode
34+
35+
# repos / submodules
36+
.git
37+
.svn

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
package.json
2+
package-lock.json

.prettierrc.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# printWidth: 80 # 80
2+
# tabWidth: 4 # 2
3+
# useTabs: false # false
4+
semi: false # true
5+
singleQuote: true # false
6+
trailingComma: es5 # none | es5 | all
7+
# bracketSpacing: true # true
8+
# jsxBracketSameLine: false # false
9+
# arrowParens: avoid # avoid | always

0 commit comments

Comments
 (0)