This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #4 from AliMD/feat/seperate
feat: seperate eslib from main alwatr project
- Loading branch information
Showing
109 changed files
with
161 additions
and
1,110 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 |
---|---|---|
@@ -1,5 +1,2 @@ | ||
cloud/classic/lib/* filter=crypt diff=crypt merge=crypt | ||
ssh-* filter=crypt diff=crypt merge=crypt | ||
**/secret/** filter=crypt diff=crypt merge=crypt | ||
*.env filter=crypt diff=crypt merge=crypt | ||
*.http filter=crypt diff=crypt merge=crypt |
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: 🐞 Bug report | ||
about: File a bug/issue | ||
title: '[BUG] <title>' | ||
labels: 'bug-report' | ||
assignees: 'njfamirm' | ||
--- | ||
|
||
<!-- | ||
Note: Please search to see if an issue already exists for the bug you encountered. | ||
--> | ||
|
||
### Current Behavior | ||
<!-- A concise description of what you're experiencing. --> | ||
|
||
### Expected Behavior | ||
<!-- A concise description of what you expected to happen. --> | ||
|
||
### Steps To Reproduce | ||
<!-- | ||
Example: steps to reproduce the behavior: | ||
1. In this environment... | ||
1. With this config... | ||
1. Run '...' | ||
1. See error... | ||
--> | ||
|
||
### Environment | ||
<!-- | ||
Example: | ||
- OS: Ubuntu 20.04 | ||
- Node: 13.14.0 | ||
- npm: 7.6.3 | ||
--> | ||
|
||
### Anything else | ||
<!-- | ||
Links? References? Anything that will give us more context about the issue that you are encountering! | ||
--> |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: '💡 Feature request' | ||
about: 'Request new features or options. Please search for existing issues first. Also see CONTRIBUTING.' | ||
title: '[FR] <title>' | ||
labels: 'feature-request' | ||
assignees: 'njfamirm' | ||
--- | ||
|
||
## Please Describe The Problem To Be Solved | ||
|
||
<!-- Please present a concise description of the problem to be addressed by this feature request. Please be clear what parts of the problem are considered to be in-scope and out-of-scope. --> | ||
|
||
## Suggest A Solution (Optional) | ||
|
||
<!-- | ||
A concise description of your preferred solution. Things to address include: | ||
* Details of the technical implementation | ||
* Tradeoffs made in design decisions | ||
* Caveats and considerations for the future | ||
If there are multiple solutions, please present each one separately. Save comparisons for the very end.) | ||
--> |
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,5 +1,9 @@ | ||
blank_issues_enabled: false | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Telegram group of Alwatr developers | ||
url: 'https://t.me/AlwatrWG' | ||
about: Communication with developers | ||
- name: Discussions | ||
url: https://github.com/AliMD/alwatr/discussions | ||
about: Please ask and answer questions here. | ||
|
||
- name: Contact up | ||
url: 'https://t.me/AlwatrSupport' | ||
about: Direct contact to Alwatr support team at Telegram. |
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 |
---|---|---|
|
@@ -43,3 +43,7 @@ updates: | |
lint-dependencies: | ||
patterns: | ||
- "*lint*" | ||
alwatr-dependencies: | ||
patterns: | ||
- "@alwatr/*" | ||
- "fract" |
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 |
---|---|---|
@@ -1,17 +1,3 @@ | ||
## Description | ||
|
||
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. | ||
|
||
Fixes #(issue) | ||
|
||
## PR Checklist | ||
|
||
Please check if your PR fulfills the following requirements: | ||
|
||
- [ ] Open an issue for bug report or feature request and mention it to this PR. | ||
- [ ] The commit message follows our guidelines: <https://github.com/AliMD/alwatr/blob/main/CONTRIBUTING.md#commit-message-format> | ||
- [ ] All methods have proper description in `jsdocs` format with `@example` section. | ||
- [ ] Docs have been added / updated (for bug fixes / features). | ||
- [ ] I have performed a self-review of my own code. | ||
|
||
## Other information | ||
<!-- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. --> |
Oops, something went wrong.