-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1025 from ForestAdmin/main
- Loading branch information
Showing
45 changed files
with
5,384 additions
and
5,780 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
## Pull Request checklist: | ||
## Definition of Done | ||
|
||
### General | ||
|
||
- [ ] Write an explicit title for the Pull Request, following [Conventional Commits specification](https://www.conventionalcommits.org) | ||
- [ ] Create automatic tests | ||
- [ ] Test manually the implemented changes | ||
- [ ] Review my own code (indentation, syntax, style, simplicity, readability) | ||
- [ ] Wonder if you can improve the existing code | ||
- [ ] If needed, Types have been updated | ||
- [ ] Validate the code quality (indentation, syntax, style, simplicity, readability) | ||
- [ ] Ensure that Types have been updated according to your changes (if needed) | ||
|
||
### Security | ||
|
||
- [ ] Consider the security impact of the changes made |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
ignore: | ||
- dependency-name: "@babel/core" | ||
versions: | ||
- 7.12.10 | ||
- 7.12.13 | ||
- 7.12.16 | ||
- 7.12.17 | ||
- 7.13.1 | ||
- 7.13.10 | ||
- 7.13.13 | ||
- 7.13.14 | ||
- 7.13.15 | ||
- 7.13.8 | ||
- dependency-name: "@babel/preset-env" | ||
versions: | ||
- 7.12.11 | ||
- 7.12.13 | ||
- 7.12.16 | ||
- 7.12.17 | ||
- 7.13.0 | ||
- 7.13.10 | ||
- 7.13.12 | ||
- 7.13.5 | ||
- 7.13.8 | ||
- 7.13.9 | ||
- dependency-name: ini | ||
versions: | ||
- 1.3.8 | ||
- dependency-name: y18n | ||
versions: | ||
- 3.2.2 | ||
- dependency-name: simple-git | ||
versions: | ||
- 2.31.0 | ||
- 2.32.0 | ||
- 2.34.2 | ||
- 2.35.0 | ||
- 2.35.1 | ||
- 2.35.2 | ||
- 2.36.0 | ||
- 2.36.1 | ||
- 2.36.2 | ||
- 2.37.0 | ||
- dependency-name: semver | ||
versions: | ||
- 7.3.4 | ||
- dependency-name: "@babel/plugin-transform-arrow-functions" | ||
versions: | ||
- 7.12.1 | ||
- 7.12.13 | ||
- dependency-name: lodash | ||
versions: | ||
- 4.17.20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ node_modules | |
|
||
# Build | ||
dist | ||
.eslintcache | ||
|
||
# VS Code | ||
*.code-workspace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx --no-install commitlint --edit "$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"*.js": ["eslint --cache --quiet --fix"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.