generated from cheqd/.github
-
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.
- Loading branch information
Showing
11 changed files
with
160 additions
and
96 deletions.
There are no files selected for viewing
65 changes: 27 additions & 38 deletions
65
.github/ISSUE_TEMPLATE/bug_report.yml → .github/ISSUE_TEMPLATE/bug-report.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
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,14 @@ | ||
blank_issues_enabled: true | ||
|
||
contact_links: | ||
- name: System Status | ||
url: https://status.cheqd.net | ||
about: System status reporting tool for cheqd services | ||
|
||
- name: Technical Documentation | ||
url: https://docs.cheqd.io | ||
about: Technical Documentation for cheqd projects | ||
|
||
- name: Community Slack | ||
url: http://cheqd.link/join-cheqd-slack | ||
about: Community Slack for Q&A and discussions |
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,27 @@ | ||
name: Feature Request | ||
description: Request a new feature | ||
title: "[feature]: " | ||
labels: ["feature-request"] | ||
body: | ||
- type: textarea | ||
id: feature-info | ||
attributes: | ||
label: What is the feature you'd like to see? | ||
description: Also tell what prompted this idea? | ||
placeholder: I would like to see... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: examples | ||
attributes: | ||
label: Are there any examples of where similar features are available? | ||
description: Feel free to provide any links, screenshots, mockups etc that would help illustrate this idea better. | ||
placeholder: An example of this feature is... | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/cheqd/.github/blob/main/CODE_OF_CONDUCT.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
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,37 @@ | ||
module.exports = { | ||
rules: { | ||
'type-case': [2, 'always', 'lower-case'], | ||
'type-empty': [2, 'never'], | ||
'type-enum': [ | ||
2, | ||
'always', | ||
[ | ||
'build', | ||
'chore', | ||
'ci', | ||
'docs', | ||
'feat', | ||
'fix', | ||
'perf', | ||
'refactor', | ||
'revert', | ||
'style', | ||
'test', | ||
], | ||
], | ||
'scope-case': [2, 'always', 'lower-case'], | ||
'scope-empty': [1, 'never'], | ||
'subject-case': [ | ||
2, | ||
'always', | ||
['sentence-case'], | ||
], | ||
'subject-empty': [2, 'never'], | ||
'subject-full-stop': [2, 'never', '.'], | ||
'header-max-length': [2, 'always', 100], | ||
'body-leading-blank': [1, 'always'], | ||
'body-max-line-length': [2, 'always', 100], | ||
'footer-leading-blank': [1, 'always'], | ||
'footer-max-line-length': [2, 'always', 100], | ||
}, | ||
}; |
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,25 @@ | ||
run: | ||
timeout: 5m | ||
|
||
|
||
linters: | ||
enable: | ||
- deadcode | ||
- errcheck | ||
- gosimple | ||
- gofumpt | ||
- govet | ||
- ineffassign | ||
- misspell | ||
- nestif | ||
- staticcheck | ||
- structcheck | ||
- typecheck | ||
- unused | ||
- varcheck | ||
|
||
|
||
linters-settings: | ||
misspell: | ||
ignore-words: | ||
- cheqd |
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 @@ | ||
# Set threshold level (error | warning | info | style | ignore | none) | ||
failure-threshold: warning | ||
|
||
# List of ignored rules | ||
# See list for reference: https://github.com/hadolint/hadolint#rules | ||
ignored: | ||
|
||
# Override default levels for specific rules | ||
override: | ||
error: | ||
warning: | ||
info: | ||
- DL3008 | ||
- DL3027 | ||
style: |
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
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