Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from AliMD/feat/seperate
Browse files Browse the repository at this point in the history
feat: seperate eslib from main alwatr project
  • Loading branch information
AliMD authored Sep 19, 2023
2 parents ed34425 + 680604f commit 0860d06
Show file tree
Hide file tree
Showing 109 changed files with 161 additions and 1,110 deletions.
12 changes: 2 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
// "plugin:@typescript-eslint/strict-type-checked",
// "plugin:@typescript-eslint/stylistic-type-checked",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:wc/best-practice",
"plugin:lit/recommended"
"plugin:import/typescript"
],
"env": {
"shared-node-browser": true,
Expand All @@ -22,7 +20,7 @@
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "import", "wc"],
"plugins": ["@typescript-eslint", "import"],
"settings": {
"import/resolver": {
"typescript": {
Expand All @@ -31,9 +29,6 @@
"projectFolderIgnoreList": ["**/node_modules/**"]
},
"node": true
},
"wc": {
"elementBaseClasses": ["LitElement"]
}
},
"rules": {
Expand All @@ -57,10 +52,7 @@
}
],
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"lit/attribute-value-entities": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"import/no-unresolved": "off",
"wc/guard-super-call": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"no-throw-literal": "off",
"require-jsdoc": "off",
Expand Down
3 changes: 0 additions & 3 deletions .gitattributes
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
101 changes: 0 additions & 101 deletions .gitconfig

This file was deleted.

39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug-report.md
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!
-->
81 changes: 0 additions & 81 deletions .github/ISSUE_TEMPLATE/1-bug-report.yaml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/2-feature-request.md
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.)
-->
43 changes: 0 additions & 43 deletions .github/ISSUE_TEMPLATE/2-feature-request.yaml

This file was deleted.

12 changes: 8 additions & 4 deletions .github/ISSUE_TEMPLATE/config.yml
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.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ updates:
lint-dependencies:
patterns:
- "*lint*"
alwatr-dependencies:
patterns:
- "@alwatr/*"
- "fract"
7 changes: 7 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
- name: 'bug-report'
color: ee0811
description: 'Inconsistencies or issues which will cause a problem for users or implementors.'
- name: 'feature-request'
color: 0e9a26
description: 'Request new features or options.'

- name: 'breaking-change'
color: ee0701
description: 'A change that changes the API or breaks backward compatibility for users.'
Expand Down
16 changes: 1 addition & 15 deletions .github/pull_request_template.md
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. -->
Loading

0 comments on commit 0860d06

Please sign in to comment.