-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
840c775
commit 97e3687
Showing
54 changed files
with
119,456 additions
and
1 deletion.
There are no files selected for viewing
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,12 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,116 @@ | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/eslint-recommended" | ||
], | ||
"plugins": [ | ||
"@typescript-eslint", | ||
"import" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2018 | ||
}, | ||
"env": { | ||
"node": true, | ||
"jest": true, | ||
"es6": true, | ||
"browser": true | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "latest" | ||
} | ||
}, | ||
"rules": { | ||
"camelcase": [ | ||
"error", | ||
{ | ||
"properties": "always" | ||
} | ||
], | ||
"quotes": [ | ||
"error", | ||
"single", | ||
"avoid-escape" | ||
], | ||
"key-spacing": [ | ||
"error", | ||
{ | ||
"singleLine": { | ||
"beforeColon": false, | ||
"afterColon": true | ||
}, | ||
"multiLine": { | ||
"beforeColon": false, | ||
"afterColon": true | ||
} | ||
} | ||
], | ||
"eqeqeq": "error", | ||
"block-scoped-var": "error", | ||
"complexity": [ | ||
"error", | ||
{ | ||
"maximum": 20 | ||
} | ||
], | ||
"default-case": "error", | ||
"dot-location": [ | ||
"error", | ||
"property" | ||
], | ||
"guard-for-in": "error", | ||
"no-eval": "error", | ||
"block-spacing": "error", | ||
"brace-style": "error", | ||
"comma-spacing": [ | ||
"error", | ||
{ | ||
"before": false, | ||
"after": true | ||
} | ||
], | ||
"indent": [ | ||
"error", | ||
2, | ||
{ | ||
"SwitchCase": 1 | ||
} | ||
], | ||
"space-before-function-paren": [ | ||
"error", | ||
"never" | ||
], | ||
"space-before-blocks": "error", | ||
"prefer-const": "error", | ||
"no-var": "error", | ||
"arrow-body-style": "off", | ||
"arrow-spacing": "error", | ||
"strict": [ | ||
"error" | ||
], | ||
"no-warning-comments": [ | ||
"warn", | ||
{ | ||
"terms": [ | ||
"todo", | ||
"fixme", | ||
"hack" | ||
], | ||
"location": "anywhere" | ||
} | ||
], | ||
"semi": [ | ||
"error" | ||
], | ||
"sort-imports": 0, | ||
"import/order": [2, { | ||
"groups": ["type", "builtin", "external", "internal", "parent", "sibling", "index", "object"], | ||
"alphabetize": { "order": "asc", "caseInsensitive": true } | ||
}], | ||
"@typescript-eslint/no-non-null-assertion": "off" | ||
} | ||
} |
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,76 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as | ||
contributors and maintainers pledge to making participation in our project and | ||
our community a harassment-free experience for everyone, regardless of age, body | ||
size, disability, ethnicity, sex characteristics, gender identity and expression, | ||
level of experience, education, socio-economic status, nationality, personal | ||
appearance, race, religion, or sexual identity and orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment | ||
include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or | ||
advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic | ||
address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a | ||
professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable | ||
behavior and are expected to take appropriate and fair corrective action in | ||
response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or | ||
reject comments, commits, code, wiki edits, issues, and other contributions | ||
that are not aligned to this Code of Conduct, or to ban temporarily or | ||
permanently any contributor for other behaviors that they deem inappropriate, | ||
threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces | ||
when an individual is representing the project or its community. Examples of | ||
representing a project or community include using an official project e-mail | ||
address, posting via an official social media account, or acting as an appointed | ||
representative at an online or offline event. Representation of a project may be | ||
further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported by contacting the project team at [email protected]. All | ||
complaints will be reviewed and investigated and will result in a response that | ||
is deemed necessary and appropriate to the circumstances. The project team is | ||
obligated to maintain confidentiality with regard to the reporter of an incident. | ||
Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good | ||
faith may face temporary or permanent repercussions as determined by other | ||
members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, | ||
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html | ||
|
||
[homepage]: https://www.contributor-covenant.org | ||
|
||
For answers to common questions about this code of conduct, see | ||
https://www.contributor-covenant.org/faq |
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 @@ | ||
Backlog: | ||
'In progress': | ||
- 'Status: In Progress' |
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,44 @@ | ||
# Configuration for request-info - https://github.com/behaviorbot/request-info | ||
|
||
# *Required* Comment to reply with | ||
requestInfoReplyComment: > | ||
:clap: We would appreciate it if you could provide us with more info about this issue/pr! | ||
# *OPTIONAL* default titles to check against for lack of descriptiveness | ||
# MUST BE ALL LOWERCASE | ||
requestInfoDefaultTitles: | ||
- update readme.md | ||
- updates | ||
- update | ||
|
||
# *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given | ||
requestInfoLabelToAdd: "Status: More Information Needed" | ||
|
||
|
||
|
||
|
||
# Configuration for welcome - https://github.com/behaviorbot/welcome | ||
|
||
# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome | ||
|
||
# Comment to be posted to on first time issues | ||
newIssueWelcomeComment: > | ||
:raised_hands: Thanks for opening your first issue here! Be sure to follow the issue template! | ||
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome | ||
|
||
# Comment to be posted to on PRs from first time contributors in your repository | ||
newPRWelcomeComment: > | ||
:raised_hands: Thanks for opening this pull request! Please check out our contributing guidelines. | ||
# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge | ||
|
||
# Comment to be posted to on pull requests merged by a first time user | ||
firstPRMergeComment: > | ||
:tada: Congrats on merging your first pull request! We here at behaviorbot are proud of you! | ||
# Configuration for todo - https://github.com/jasonetco/todo | ||
todo: | ||
- label: "Type: Todo" |
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,26 @@ | ||
javascript: | ||
- '**/*.js' | ||
typescript: | ||
- '**/*.ts' | ||
php: | ||
- '**/*.php' | ||
python: | ||
- '**/*.py' | ||
cpp: | ||
- '**/*.cpp' | ||
- '**/*.cxx' | ||
- '**/*.cc' | ||
- '**/*.cp' | ||
|
||
'Type: Testing': | ||
- '**/tests/*' | ||
- '**/test/*' | ||
- '**/__tests__/*' | ||
|
||
'Type: Documentation': | ||
- '**/*.md' | ||
|
||
'Type: CI/CD': | ||
- '.github/workflows/*.yml' | ||
- '.circleci/*' | ||
- '.travis.yml' |
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,13 @@ | ||
# Configuration for probot-no-response - https://github.com/probot/no-response | ||
|
||
# Number of days of inactivity before an Issue is closed for lack of response | ||
daysUntilClose: 14 | ||
# Label requiring a response | ||
responseRequiredLabel: "Status: More Information Needed" | ||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information from the original author. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have or find the answers we need so | ||
that we can investigate further. |
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,6 @@ | ||
'Type: Feature': ['feature/*', 'feat/*'] | ||
'Type: Bug': fix/* | ||
'Type: Maintenance': ['patch/*', 'chore/*'] | ||
'Type: Release': release/* | ||
'Type: Refactoring': ['refactor/*', 'refactoring/*'] | ||
'Type: Documentation': ['docs/*', 'doc/*'] |
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,31 @@ | ||
# Config for https://github.com/apps/release-drafter | ||
name-template: 'v$NEXT_PATCH_VERSION' | ||
tag-template: 'v$NEXT_PATCH_VERSION' | ||
categories: | ||
- title: ':rocket: Features' | ||
labels: | ||
- 'Type: Feature' | ||
- 'Type: Refactoring' | ||
- title: ':bug: Bug Fixes' | ||
labels: | ||
- 'Type: Bug' | ||
- 'Type: Security' | ||
- title: ':wrench: Maintenance' | ||
labels: | ||
- 'Type: Maintenance' | ||
- 'Type: CI/CD' | ||
- title: ':green_book: Docs' | ||
labels: | ||
- 'Type: Documentation' | ||
- title: ':white_check_mark: Tested' | ||
labels: | ||
- 'Type: Testing' | ||
- title: ':sparkles: All Changes' | ||
labels: | ||
- 'Type: Release' | ||
exclude-labels: | ||
- 'dependencies' | ||
template: | | ||
## What’s Changed | ||
$CHANGES |
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,17 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 180 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 30 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- "Priority: Critical" | ||
- "Type: Security" | ||
# Label to use when marking an issue as stale | ||
staleLabel: "Status: Abandoned" | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |
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 @@ | ||
{ | ||
"TOC_FOOTER": "*generated with [TOC Generator](https://github.com/technote-space/toc-generator)*" | ||
} |
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,30 @@ | ||
{ | ||
"EXCLUDE_MESSAGES": [ | ||
"update package version", | ||
"update packages", | ||
"update wp version", | ||
"trigger workflow", | ||
"update TOC" | ||
], | ||
"PROJECT": "Backlog", | ||
"ISSUE_COLUMN": "To do", | ||
"PR_COLUMN": "In progress", | ||
"PR_BODY_TITLE": "## Changes", | ||
"TOC_FOLDING": "1", | ||
"TOC_MAX_HEADER_LEVEL": "3", | ||
"TOC_TITLE": "Details", | ||
"TOC_CREATE_PR": "true", | ||
"TOC_TARGET_PATHS": "README*.md", | ||
"BRANCH_PREFIX": "release/", | ||
"ANNOTATION_EXCLUDE_PATTERNS": [ | ||
">> warning ", | ||
">> hint: ", | ||
"Cloning into", | ||
"has unmet peer dependency", | ||
"has incorrect peer dependency", | ||
"Using version", | ||
"ci-helper", | ||
"tests/bootstrap.php" | ||
], | ||
"CHANGE_TEMPLATE": "- [ ] ${TITLE} (#${NUMBER}) @${AUTHOR}" | ||
} |
Oops, something went wrong.