├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── extension.js ├── images ├── icon.png └── vscode-lint.png ├── jsconfig.json ├── package.json ├── schemas ├── asyncapi-1.2.json ├── asyncapi-2.0.json ├── openapi-2.0.json └── openapi-3.0.json ├── snippets ├── json.json └── yaml.json └── test ├── extension.test.js └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/README.md -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/extension.js -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/vscode-lint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/images/vscode-lint.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/package.json -------------------------------------------------------------------------------- /schemas/asyncapi-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/schemas/asyncapi-1.2.json -------------------------------------------------------------------------------- /schemas/asyncapi-2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/schemas/asyncapi-2.0.json -------------------------------------------------------------------------------- /schemas/openapi-2.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/schemas/openapi-2.0.json -------------------------------------------------------------------------------- /schemas/openapi-3.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/schemas/openapi-3.0.json -------------------------------------------------------------------------------- /snippets/json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/snippets/json.json -------------------------------------------------------------------------------- /snippets/yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/snippets/yaml.json -------------------------------------------------------------------------------- /test/extension.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/test/extension.test.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mermade/openapi-lint-vscode/HEAD/test/index.js --------------------------------------------------------------------------------