-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added information on documentation
- Loading branch information
ADMSK\AVROGAL1
committed
Feb 17, 2021
1 parent
48a20c5
commit dd316da
Showing
7 changed files
with
105 additions
and
85 deletions.
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
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 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_size = 2 | ||
# Possible values - tab, space | ||
indent_style = space | ||
# Possible values - lf, crlf, cr | ||
end_of_line = lf | ||
# Possible values - latin1, utf-8, utf-16be, utf-16le | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
max_line_length = 120 | ||
|
||
[*.js] | ||
indent_size = 2 | ||
max_line_length = 100 | ||
|
||
[*.{yml, yaml}] | ||
indent_size = 2 | ||
|
||
[*.{html, xml}] | ||
indent_size = 4 | ||
|
||
[*.{css, scss, json}] | ||
indent_size = 2 | ||
|
||
[*.{md, markdown}] | ||
max_line_length = off | ||
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 |
---|---|---|
@@ -1,36 +1,26 @@ | ||
# Configuration for lock-threads - https://github.com/dessant/lock-threads | ||
|
||
# Number of days of inactivity before a closed issue or pull request is locked | ||
daysUntilLock: 60 | ||
daysUntilLock: 180 | ||
|
||
# Skip issues and pull requests created before a given timestamp. Timestamp must | ||
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable | ||
skipCreatedBefore: false | ||
|
||
# Issues and pull requests with these labels will not be locked. Set to `[]` to disable | ||
exemptLabels: | ||
- backlog | ||
# Assign `resolved` as the reason for locking. Set to `false` to disable | ||
setLockReason: true | ||
|
||
# Label to add before locking, such as `outdated`. Set to `false` to disable | ||
lockLabel: 🔒 Locked | ||
|
||
# Comment to post before locking. Set to `false` to disable | ||
lockComment: > | ||
This thread has been automatically locked because it has not had recent | ||
activity. Please open a new issue for related bugs and link to relevant | ||
comments in this thread. | ||
# Assign `resolved` as the reason for locking. Set to `false` to disable | ||
setLockReason: true | ||
⚠️This issue has been automatically locked 🔒since there has not been | ||
any recent activity after it was closed. Please open a new 🆕issue for related bugs | ||
and mention this issue. Thanks! 👍 | ||
# Issues or pull requests with these labels will not be locked | ||
exemptLabels: | ||
- help-wanted | ||
|
||
# Limit to only `issues` or `pulls` | ||
only: issues | ||
|
||
# Optionally, specify configuration settings just for `issues` or `pulls` | ||
# issues: | ||
# exemptLabels: | ||
# - help-wanted | ||
# lockLabel: outdated | ||
|
||
# pulls: | ||
# daysUntilLock: 30 |
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,15 @@ | ||
# 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: 28 | ||
|
||
# Label requiring a response | ||
responseRequiredLabel: 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 |
---|---|---|
@@ -1,70 +1,34 @@ | ||
# Configuration for probot-stale - https://github.com/probot/stale | ||
|
||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- pinned | ||
- security | ||
# Label to use when marking an issue as stale | ||
staleLabel: wontfix | ||
# 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 | ||
|
||
# Comment to be posted to on first time issues | ||
newIssueWelcomeComment: | | ||
👋 Thanks for opening your first issue! If you're reporting a 🐞 bug, please make sure | ||
you include steps to reproduce it. If you're requesting a feature 🎁, please provide real | ||
use cases that would benefit. 👪 | ||
# Number of days of inactivity before an Issue or Pull Request becomes stale | ||
daysUntilStale: 365 | ||
|
||
To help make this a smooth process, please be sure you have first read the | ||
[contributing guidelines](https://github.com/AlexRogalskiy/java-patterns/blob/master/.github/CONTRIBUTING.md). | ||
# Number of days of inactivity before a stale Issue or Pull Request is closed | ||
daysUntilClose: 14 | ||
|
||
# Comment to be posted to on PRs from first time contributors in your repository | ||
newPRWelcomeComment: | | ||
💖 Thanks for opening this pull request! 💖 | ||
# Issues or Pull Requests with these labels will never be considered stale | ||
# exemptLabels: | ||
|
||
To help make this a smooth process, please be sure you have first read the | ||
[contributing guidelines](https://github.com/AlexRogalskiy/java-patterns/blob/master/.github/CONTRIBUTING.md). | ||
# Label to use when marking as stale | ||
staleLabel: Stale | ||
# Comment to post when marking as stale. Set to `false` to disable | ||
markComment: > | ||
👏 Thanks for your contribution! | ||
⚠️This issue has been automatically marked as stale because it has not had | ||
recent activity. Because the Legesher team treats their issues | ||
[as their backlog](https://en.wikipedia.org/wiki/Scrum_(software_development)#Product_backlog), stale issues | ||
are closed. 📕 If you would like this issue to remain open: | ||
1. Verify that you can still reproduce the issue in the latest version of Atom | ||
1. Comment that the issue is still reproducible and include: | ||
* What version of Atom you reproduced the issue on | ||
* What OS and version you reproduced the issue on | ||
* What steps you followed to reproduce the issue | ||
Thank you! 👍 | ||
# Comment to post when removing the stale label. Set to `false` to disable | ||
unmarkComment: true | ||
|
||
# Comment to be posted to on pull requests merged by a first time user | ||
firstPRMergeComment: > | ||
Congrats on merging your first pull request! 🎉🎉🎉 You're helping make Insomnia awesome! 🙌 | ||
# Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable | ||
closeComment: true | ||
|
||
# Comment to post when marking as stale. Set to `false` to disable. | ||
issues: | ||
daysUntilStale: 90 | ||
daysUntilClose: 7 | ||
exemptLabels: | ||
- confirmed | ||
markComment: > | ||
Thank you for taking the time to raise this issue. However, it has | ||
not had any activity on it in the past 180 days and will be closed in | ||
90 days if no updates occur. | ||
Please check if the master branch has already resolved the issue | ||
since it was raised. If you believe the issue is still valid and you | ||
would like input from the maintainers then please comment to ask for | ||
it to be reviewed. | ||
closeComment: > | ||
This issue has been automatically closed due to inactivity. Please re-open | ||
if this still requires investigation. | ||
pulls: | ||
daysUntilStale: 90 | ||
daysUntilClose: 30 | ||
markComment: > | ||
Thank you for your contribution! However, this pull request has not | ||
had any activity in the past 180 days and will be closed in 90 days if | ||
no updates occur. | ||
If you believe the changes are still valid then please verify your | ||
branch has no conflicts with master and rebase if needed. If you | ||
are awaiting a (re-)review then please let us know. | ||
closeComment: > | ||
This pull request has been automatically closed due to inactivity. Please re-open | ||
if these changes are still required. | ||
# Limit to only `issues` or `pulls` | ||
only: issues |
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,7 @@ | ||
set tabstop=2 | ||
set shiftwidth=2 | ||
set softtabstop=2 | ||
set expandtab | ||
set nosmarttab | ||
|
||
set textwidth=80 |
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