-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ls): add rules for OpenAPI 2.0 Headers Object
Refs #3608
- Loading branch information
Showing
6 changed files
with
49 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
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
10 changes: 10 additions & 0 deletions
10
packages/apidom-ls/src/config/openapi/headers/documentation.ts
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 @@ | ||
import { OpenAPI2 } from '../target-specs'; | ||
|
||
const documentation = [ | ||
{ | ||
docs: '#### [Headers Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/2.0.md#headers-object)\n\nLists the headers that can be sent as part of a response.\n\n##### Patterned Fields\nField Pattern | Type | Description\n---|:---:|---\n{name} | [Header Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/2.0.md#headerObject) | The name of the property corresponds to the name of the header. The value describes the type of the header.\n\n##### Headers Object Example\n\nRate-limit headers:\n\n```js\n{\n "X-Rate-Limit-Limit": {\n "description": "The number of allowed requests in the current period",\n "type": "integer"\n },\n "X-Rate-Limit-Remaining": {\n "description": "The number of remaining requests in the current period",\n "type": "integer"\n },\n "X-Rate-Limit-Reset": {\n "description": "The number of seconds left in the current period",\n "type": "integer"\n }\n}\n```\n\n\n\\\nYAML\n```yaml\nX-Rate-Limit-Limit:\n description: The number of allowed requests in the current period\n type: integer\nX-Rate-Limit-Remaining:\n description: The number of remaining requests in the current period\n type: integer\nX-Rate-Limit-Reset:\n description: The number of seconds left in the current period\n type: integer\n```', | ||
targetSpecs: OpenAPI2, | ||
}, | ||
]; | ||
|
||
export default documentation; |
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,5 @@ | ||
import valuesTypeLint from './values--type'; | ||
|
||
const lints = [valuesTypeLint]; | ||
|
||
export default lints; |
19 changes: 19 additions & 0 deletions
19
packages/apidom-ls/src/config/openapi/headers/lint/values--type.ts
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,19 @@ | ||
import { DiagnosticSeverity } from 'vscode-languageserver-types'; | ||
|
||
import ApilintCodes from '../../../codes'; | ||
import { LinterMeta } from '../../../../apidom-language-types'; | ||
import { OpenAPI2 } from '../../target-specs'; | ||
|
||
const valuesTypeLint: LinterMeta = { | ||
code: ApilintCodes.OPENAPI2_HEADERS_VALUES_TYPE, | ||
source: 'apilint', | ||
message: 'Headers Object values must be of Header Object shape', | ||
severity: DiagnosticSeverity.Error, | ||
linterFunction: 'apilintChildrenOfElementsOrClasses', | ||
linterParams: [['header']], | ||
marker: 'key', | ||
data: {}, | ||
targetSpecs: OpenAPI2, | ||
}; | ||
|
||
export default valuesTypeLint; |
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 @@ | ||
import lint from './lint'; | ||
import documentation from './documentation'; | ||
import { FormatMeta } from '../../../apidom-language-types'; | ||
|
||
const meta: FormatMeta = { | ||
lint, | ||
documentation, | ||
}; | ||
|
||
export default meta; |