Initial commit of the Aperture VS Code extension, including core functionality for OpenAPI JSON/YAML IntelliSense, custom linting rules, and comprehensive test scenarios. Added configuration files, package dependencies, and example OpenAPI documents.

This commit is contained in:
Luke Hagar
2025-09-25 01:38:44 +00:00
parent 91dbd9994e
commit 639477015d
31 changed files with 7770 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
openapi: 3.2.0
info:
title: Pet Store API
version: 1.0.0
paths:
/pets:
get:
summary: List all pets
operationId: listPets
responses:
'200':
description: A paged array of pets
/animals:
get:
summary: List all animals
operationId: listPets # Duplicate operationId - should trigger operation-id rule
responses:
'200':
description: A paged array of animals