-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
802 changed files
with
120,694 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 @@ | ||
dist/ |
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 @@ | ||
{ | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
], | ||
"rules": { | ||
"header-max-length": [ | ||
2, | ||
"always", | ||
69 | ||
], | ||
"scope-case": [ | ||
2, | ||
"always", | ||
[ | ||
"camel-case", | ||
"kebab-case", | ||
"upper-case" | ||
] | ||
], | ||
"subject-case": [ | ||
0, | ||
"always" | ||
] | ||
} | ||
} |
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,8 @@ | ||
/.git | ||
/.github | ||
/dev-helpers | ||
/docs | ||
/src | ||
/swagger-ui-dist-package | ||
/test | ||
/node_modules |
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 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
[*.md] | ||
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dist/ | ||
node_modules/ |
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,40 @@ | ||
parser: "@babel/eslint-parser" | ||
env: | ||
browser: true | ||
node: true | ||
es6: true | ||
jest: true | ||
jest/globals: true | ||
parserOptions: | ||
ecmaFeatures: | ||
jsx: true | ||
extends: | ||
- eslint:recommended | ||
- plugin:react/recommended | ||
plugins: | ||
- react | ||
- mocha | ||
- import | ||
- jest | ||
settings: | ||
react: | ||
pragma: React | ||
version: '15.0' | ||
rules: | ||
semi: [2, never] | ||
strict: 0 | ||
quotes: [2, double, { avoidEscape: true, allowTemplateLiterals: true }] | ||
no-unused-vars: 2 | ||
no-multi-spaces: 1 | ||
camelcase: 1 | ||
no-use-before-define: [2, nofunc] | ||
no-underscore-dangle: 0 | ||
no-unused-expressions: 1 | ||
comma-dangle: 0 | ||
no-console: [2, { allow: [warn, error] }] | ||
react/jsx-no-bind: 1 | ||
react/jsx-no-target-blank: 2 | ||
react/display-name: 0 | ||
mocha/no-exclusive-tests: 2 | ||
import/no-extraneous-dependencies: 2 | ||
react/jsx-filename-extension: 2 |
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 @@ | ||
docker-run.sh text eol=lf |
73 changes: 73 additions & 0 deletions
73
comsplatform/swagger-ui-5.3.2/.github/ISSUE_TEMPLATE/Bug_report.md
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,73 @@ | ||
--- | ||
name: Bug report | ||
about: Report an issue you're experiencing | ||
|
||
--- | ||
|
||
<!--- | ||
Thanks for filing a bug report! 😄 | ||
Before you submit, please read the following: | ||
If you're here to report a security issue, please STOP writing an issue and | ||
contact us at [email protected] instead! | ||
Search open/closed issues before submitting! | ||
Issues on GitHub are only related to problems of Swagger-UI itself. We'll try | ||
to offer support here for your use case, but we can't offer help with projects | ||
that use Swagger-UI indirectly, like Springfox or swagger-node. | ||
Likewise, we can't accept bugs in the Swagger/OpenAPI specifications | ||
themselves, or anything that violates the specifications. | ||
--> | ||
|
||
### Q&A (please complete the following information) | ||
- OS: [e.g. macOS] | ||
- Browser: [e.g. chrome, safari] | ||
- Version: [e.g. 22] | ||
- Method of installation: [e.g. npm, dist assets] | ||
- Swagger-UI version: [e.g. 3.10.0] | ||
- Swagger/OpenAPI version: [e.g. Swagger 2.0, OpenAPI 3.0] | ||
|
||
### Content & configuration | ||
<!-- | ||
Provide us with a way to see what you're seeing, | ||
so that we can fix your issue. | ||
--> | ||
|
||
Example Swagger/OpenAPI definition: | ||
```yaml | ||
# your YAML here | ||
``` | ||
|
||
Swagger-UI configuration options: | ||
```js | ||
SwaggerUI({ | ||
// your config options here | ||
}) | ||
``` | ||
|
||
``` | ||
?yourQueryStringConfig | ||
``` | ||
|
||
### Describe the bug you're encountering | ||
<!-- 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. --> | ||
|
||
### Additional context or thoughts | ||
<!-- Add any other context about the problem here. --> |
42 changes: 42 additions & 0 deletions
42
comsplatform/swagger-ui-5.3.2/.github/ISSUE_TEMPLATE/Feature_request.md
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,42 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest a new feature or enhancement for this project | ||
|
||
--- | ||
|
||
### Content & configuration | ||
|
||
Swagger/OpenAPI definition: | ||
```yaml | ||
# your YAML here | ||
``` | ||
|
||
Swagger-UI configuration options: | ||
```js | ||
SwaggerUI({ | ||
// your config options here | ||
}) | ||
``` | ||
|
||
``` | ||
?yourQueryStringConfig | ||
``` | ||
|
||
|
||
### Is your feature request related to a problem? | ||
<!-- | ||
Please provide a clear and concise description of what the problem is. | ||
"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. --> |
46 changes: 46 additions & 0 deletions
46
comsplatform/swagger-ui-5.3.2/.github/ISSUE_TEMPLATE/Support.md
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,46 @@ | ||
--- | ||
name: Support | ||
about: Ask a question or request help with your implementation. | ||
|
||
--- | ||
|
||
<!-- | ||
We can only offer support for Swagger-UI itself. | ||
If you're having a problem with a library that uses Swagger-UI | ||
(for example, Springfox or swagger-node), please open an issue | ||
in that project's repository instead. | ||
--> | ||
|
||
### Q&A (please complete the following information) | ||
- OS: [e.g. macOS] | ||
- Browser: [e.g. chrome, safari] | ||
- Version: [e.g. 22] | ||
- Method of installation: [e.g. npm, dist assets] | ||
- Swagger-UI version: [e.g. 3.10.0] | ||
- Swagger/OpenAPI version: [e.g. Swagger 2.0, OpenAPI 3.0] | ||
|
||
### Content & configuration | ||
<!-- Provide us with a way to see what you're seeing, so that we can help. --> | ||
|
||
Swagger/OpenAPI definition: | ||
```yaml | ||
# your YAML here | ||
``` | ||
|
||
Swagger-UI configuration options: | ||
```js | ||
SwaggerUI({ | ||
// your config options here | ||
}) | ||
``` | ||
|
||
``` | ||
?yourQueryStringConfig | ||
``` | ||
|
||
### Screenshots | ||
<!-- If applicable, add screenshots to help give context to your problem. --> | ||
|
||
### How can we help? | ||
<!-- Your question or problem goes 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 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
commit-message: | ||
prefix: "chore" | ||
include: "scope" | ||
open-pull-requests-limit: 3 | ||
ignore: | ||
# node-fetch must be synced manually | ||
- dependency-name: "node-fetch" | ||
- dependency-name: "release-it" | ||
- dependency-name: "@release-it/conventional-changelog" | ||
|
||
- package-ecosystem: "docker" | ||
# Look for a `Dockerfile` in the `root` directory | ||
directory: "/" | ||
# Check for updates once a week | ||
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,15 @@ | ||
daysUntilLock: 365 | ||
skipCreatedBefore: 2017-03-29 # initial release of Swagger UI 3.0.0 | ||
exemptLabels: [] | ||
lockLabel: "locked-by: lock-bot" | ||
setLockReason: false | ||
only: issues | ||
lockComment: false | ||
# lockComment: | | ||
# Locking due to inactivity. | ||
|
||
# This is done to avoid resurrecting old issues and bumping long threads with new, possibly unrelated content. | ||
|
||
# If you think you're experiencing something similar to what you've found here: please [open a new issue](https://github.com/swagger-api/swagger-ui/issues/new/choose), follow the template, and reference this issue in your report. | ||
|
||
# Thanks! |
55 changes: 55 additions & 0 deletions
55
comsplatform/swagger-ui-5.3.2/.github/pull_request_template.md
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,55 @@ | ||
<!--- Provide a general summary of your changes in the Title above --> | ||
|
||
### Description | ||
<!--- Describe your changes in detail --> | ||
|
||
|
||
|
||
### Motivation and Context | ||
<!--- Why is this change required? What problem does it solve? --> | ||
<!--- If it fixes an open issue, please link to the issue here. --> | ||
<!--- Use the magic "Fixes #1234" format, so the issues are --> | ||
<!--- automatically closed when this PR is merged. --> | ||
|
||
|
||
|
||
### How Has This Been Tested? | ||
<!--- Please describe in detail how you manually tested your changes. --> | ||
<!--- Include details of your testing environment, and the tests you ran to --> | ||
<!--- see how your change affects other areas of the code, etc. --> | ||
|
||
|
||
|
||
### Screenshots (if appropriate): | ||
|
||
|
||
|
||
## Checklist | ||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
|
||
### My PR contains... | ||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] No code changes (`src/` is unmodified: changes to documentation, CI, metadata, etc.) | ||
- [ ] Dependency changes (any modification to dependencies in `package.json`) | ||
- [ ] Bug fixes (non-breaking change which fixes an issue) | ||
- [ ] Improvements (misc. changes to existing features) | ||
- [ ] Features (non-breaking change which adds functionality) | ||
|
||
### My changes... | ||
- [ ] are breaking changes to a public API (config options, System API, major UI change, etc). | ||
- [ ] are breaking changes to a private API (Redux, component props, utility functions, etc.). | ||
- [ ] are breaking changes to a developer API (npm script behavior changes, new dev system dependencies, etc). | ||
- [ ] are not breaking changes. | ||
|
||
### Documentation | ||
- [ ] My changes do not require a change to the project documentation. | ||
- [ ] My changes require a change to the project documentation. | ||
- [ ] If yes to above: I have updated the documentation accordingly. | ||
|
||
### Automated tests | ||
- [ ] My changes can not or do not need to be tested. | ||
- [ ] My changes can and should be tested by unit and/or integration tests. | ||
- [ ] If yes to above: I have added tests to cover my changes. | ||
- [ ] If yes to above: I have taken care to cover edge cases in my tests. | ||
- [ ] All new and existing tests passed. |
37 changes: 37 additions & 0 deletions
37
comsplatform/swagger-ui-5.3.2/.github/workflows/dependabot-merge.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Merge me! | ||
|
||
on: | ||
pull_request_target: | ||
branches: [ master, next ] | ||
|
||
jobs: | ||
merge-me: | ||
name: Merge me! | ||
if: github.actor == 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
steps: | ||
# This first step will fail if there's no metadata and so the approval | ||
# will not occur. | ||
- name: Dependabot metadata | ||
id: dependabot-metadata | ||
uses: dependabot/[email protected] | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
# Here the PR gets approved. | ||
- name: Approve a PR | ||
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }} | ||
run: gh pr review --approve "$PR_URL" | ||
env: | ||
PR_URL: ${{ github.event.pull_request.html_url }} | ||
GITHUB_TOKEN: ${{ secrets.SWAGGER_BOT_GITHUB_TOKEN }} | ||
# Finally, tell dependabot to merge the PR if all checks are successful | ||
- name: Instruct dependabot to squash & merge | ||
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }} | ||
uses: mshick/add-pr-comment@v2 | ||
with: | ||
repo-token: ${{ secrets.SWAGGER_BOT_GITHUB_TOKEN }} | ||
allow-repeats: true | ||
message: | | ||
@dependabot squash and merge | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.SWAGGER_BOT_GITHUB_TOKEN }} |
Oops, something went wrong.