-
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
0 parents
commit a1e49d6
Showing
86 changed files
with
74,561 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
||
#production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
examples/ | ||
dist/ | ||
types/ | ||
**/*.d.ts | ||
**/*.json |
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 @@ | ||
{ | ||
"extends": ["@toruslabs/eslint-config-typescript"], | ||
"parser": "@typescript-eslint/parser", | ||
"ignorePatterns": "*.config.js", | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 11, | ||
"project": "./tsconfig.json" | ||
}, | ||
"rules": { | ||
"@typescript-eslint/no-throw-literal": 0, | ||
"no-case-declarations": 0, | ||
"no-console": 0, | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"js": "never", | ||
"jsx": "never", | ||
"ts": "never", | ||
"tsx": "never" | ||
} | ||
] | ||
}, | ||
"env": { | ||
"es2020": true, | ||
"browser": true, | ||
"node": true | ||
} | ||
} |
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,16 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 30 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 30 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: false | ||
# Label to use when marking an issue as stale | ||
staleLabel: stale | ||
# 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 contribution. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: > | ||
Closed due to inactivity. Please open a new issue regarding this or ask one of the maintainers to reopen. |
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,41 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
### **Describe the bug** | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
### **To Reproduce** | ||
|
||
Steps to reproduce the behavior: | ||
|
||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
### **Expected behavior** | ||
|
||
A clear and concise description of what you expected to happen. | ||
|
||
### **Screenshots** | ||
|
||
If applicable, add screenshots to help explain your problem. | ||
Screenshots of console logs are welcome | ||
|
||
### **Device Info (please complete the following information):** | ||
|
||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
- Web3Auth Version [e.g. 1.0.0] | ||
|
||
### **Additional context** | ||
|
||
Add any other context about the problem here. |
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: Suggest an idea for this project | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
### **Is your feature request related to a problem? Please describe.** | ||
|
||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
### **Describe the solution you'd like** | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
### **Describe alternatives you've considered** | ||
|
||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
### **Additional context** | ||
|
||
Add any other context or screenshots about the feature request here. |
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,59 @@ | ||
--- | ||
name: Bug fix PR | ||
about: Create a report | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## **Description**f | ||
|
||
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
Fixes # (issue) (Link github issue) | ||
(Add jira ticket link) | ||
|
||
## **Type of change** | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] Breaking change (fix that would cause existing functionality to not work as expected) | ||
- [ ] This change requires a documentation update | ||
|
||
## **Screenshots** | ||
|
||
Please add screenshots if applicable | ||
|
||
## **Test Configuration**: | ||
|
||
### Frontend | ||
|
||
**_Device 1_** | ||
|
||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**_Device 2_** | ||
|
||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
or | ||
|
||
### Backend | ||
|
||
Include postman test suite url or steps to run test cases | ||
|
||
## **Checklist** | ||
|
||
- [ ] My code follows the style guidelines of this project. | ||
- [ ] I've run lint and build scripts | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove that my feature works | ||
- [ ] New and existing unit tests pass locally with my 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,63 @@ | ||
--- | ||
name: Feature PR | ||
about: Create a report | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## Description | ||
|
||
Please include a summary of the change. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
(Add jira ticket link) | ||
|
||
## Type of change | ||
|
||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (feature that would cause existing functionality to not work as expected) | ||
- [ ] This change requires a documentation update | ||
|
||
## How Has This Been Tested? | ||
|
||
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration | ||
|
||
If possible, include the google doc for testing sheet | ||
|
||
- [ ] Test A | ||
- [ ] Test B | ||
|
||
## **Test Configuration**: | ||
|
||
### Frontend | ||
|
||
**_Device 1_** | ||
|
||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**_Device 2_** | ||
|
||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
or | ||
|
||
### Backend | ||
|
||
Include postman test suite url or steps to run test cases | ||
|
||
## Checklist: | ||
|
||
- [ ] My code follows the style guidelines of this project | ||
- [ ] I've run lint and build scripts | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have commented my code, particularly in hard-to-understand areas | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] My changes generate no new warnings | ||
- [ ] I have added tests that prove my fix is effective or that my feature works | ||
- [ ] New and existing unit tests pass locally with my 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,7 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: weekly |
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,10 @@ | ||
name: Check Markdown links | ||
|
||
on: push | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 |
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,100 @@ | ||
node_modules/ | ||
.node_modules/ | ||
built/* | ||
tests/cases/rwc/* | ||
tests/cases/test262/* | ||
tests/cases/perf/* | ||
!tests/cases/webharness/compilerToString.js | ||
test-args.txt | ||
~*.docx | ||
\#*\# | ||
.\#* | ||
tests/baselines/local/* | ||
tests/baselines/local.old/* | ||
tests/services/baselines/local/* | ||
tests/baselines/prototyping/local/* | ||
tests/baselines/rwc/* | ||
tests/baselines/test262/* | ||
tests/baselines/reference/projectOutput/* | ||
tests/baselines/local/projectOutput/* | ||
tests/baselines/reference/testresults.tap | ||
tests/services/baselines/prototyping/local/* | ||
tests/services/browser/typescriptServices.js | ||
src/harness/*.js | ||
src/compiler/diagnosticInformationMap.generated.ts | ||
src/compiler/diagnosticMessages.generated.json | ||
src/parser/diagnosticInformationMap.generated.ts | ||
src/parser/diagnosticMessages.generated.json | ||
rwc-report.html | ||
*.swp | ||
build.json | ||
*.actual | ||
tests/webTestServer.js | ||
tests/webTestServer.js.map | ||
tests/webhost/*.d.ts | ||
tests/webhost/webtsc.js | ||
tests/cases/**/*.js | ||
!tests/cases/docker/*.js/ | ||
tests/cases/**/*.js.map | ||
*.config | ||
scripts/eslint/built/ | ||
scripts/debug.bat | ||
scripts/run.bat | ||
scripts/word2md.js | ||
scripts/buildProtocol.js | ||
scripts/ior.js | ||
scripts/authors.js | ||
scripts/configurePrerelease.js | ||
scripts/configureLanguageServiceBuild.js | ||
scripts/open-user-pr.js | ||
scripts/open-cherry-pick-pr.js | ||
scripts/processDiagnosticMessages.d.ts | ||
scripts/processDiagnosticMessages.js | ||
scripts/produceLKG.js | ||
scripts/importDefinitelyTypedTests/importDefinitelyTypedTests.js | ||
scripts/generateLocalizedDiagnosticMessages.js | ||
scripts/request-pr-review.js | ||
scripts/*.js.map | ||
scripts/typings/ | ||
coverage/ | ||
internal/ | ||
**/.DS_Store | ||
.settings | ||
**/.vs | ||
!**/.vscode/tasks.json | ||
!**/.vscode/settings.template.json | ||
!**/.vscode/launch.template.json | ||
!**/.vscode/extensions.json | ||
!tests/cases/projects/projectOption/**/node_modules | ||
!tests/cases/projects/NodeModulesSearch/**/* | ||
!tests/baselines/reference/project/nodeModules*/**/* | ||
.idea | ||
yarn.lock | ||
yarn-error.log | ||
.parallelperf.* | ||
tests/cases/user/*/package-lock.json | ||
tests/cases/user/*/node_modules/ | ||
tests/cases/user/*/**/*.js | ||
tests/cases/user/*/**/*.js.map | ||
tests/cases/user/*/**/*.d.ts | ||
!tests/cases/user/zone.js/ | ||
!tests/cases/user/bignumber.js/ | ||
!tests/cases/user/discord.js/ | ||
tests/baselines/reference/dt | ||
.failed-tests | ||
TEST-results.xml | ||
tests/cases/user/npm/npm | ||
tests/cases/user/TypeScript-React-Starter/TypeScript-React-Starter | ||
tests/cases/user/TypeScript-Node-Starter/TypeScript-Node-Starter | ||
tests/cases/user/TypeScript-React-Native-Starter/TypeScript-React-Native-Starter | ||
tests/cases/user/TypeScript-Vue-Starter/TypeScript-Vue-Starter | ||
tests/cases/user/TypeScript-WeChat-Starter/TypeScript-WeChat-Starter | ||
tests/cases/user/create-react-app/create-react-app | ||
tests/cases/user/fp-ts/fp-ts | ||
tests/cases/user/webpack/webpack | ||
tests/cases/user/puppeteer/puppeteer | ||
tests/cases/user/axios-src/axios-src | ||
tests/cases/user/prettier/prettier | ||
.eslintcache | ||
.expo | ||
build |
Oops, something went wrong.