Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .czrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"path": "./node_modules/cz-conventional-changelog"
}
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root=true

[*]
end_of_line = lf
insert_final_newline = true

# format common editable files
[*.{js,ts,tsx,jsx,css,scss,json}]
indent_size = 2
indent_style = space

# format configuration files
[.*rc]
indent_size = 2
indent_style = space
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

lint-staged
6 changes: 6 additions & 0 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier"
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ These items are very high level right now. Further discussion and proper roadmap

- [ ] Add unit tests.
- [ ] Incorporate a CI process for publishing.
- [ ] Add lint-staged to maintain quality.
- [x] Add lint-staged to maintain quality.
- [ ] Add a code of conduct.
- [ ] Add a contributing guide.
- [ ] Create a feature roadmap.
Expand Down
18 changes: 18 additions & 0 deletions docs/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Title of your pull request

Please place a description about the job done on this pull request

## JIRA Issue
If needed, add a link of your JIRA ticket here for reference

## Checklist

- [ ] Program builds without error or warnings
- [ ] You have added/updated tests for this pull request
- [ ] Test runs without errors or warnings
- [ ] Render matches expected designs

## Screenshots
| Before | After |
| --- | --- |
| Screenshot Before | Screenshot After |
Loading