forked from docs/doc-exports
Compare commits
48 Commits
Precheck
...
as_openapi
| Author | SHA1 | Date | |
|---|---|---|---|
| cbb24dc9f6 | |||
| c7accd0259 | |||
| 43578fed3d | |||
| 34204ba8c9 | |||
| 52c741b96c | |||
| 2e0770b4fa | |||
| 525fe713d6 | |||
| 915faddddc | |||
| 356b449e16 | |||
| 3babe9da88 | |||
| db896d7e84 | |||
| 01addad3ab | |||
| a58fbfb3c6 | |||
| 321d919870 | |||
| fe83882e97 | |||
| 5cbe9fcfc3 | |||
| 0c8e63f4b0 | |||
| 5fc2fe7cdc | |||
| c02831627e | |||
| 8ca8e2b2cf | |||
| dec9be5fad | |||
| 6a78fb1d49 | |||
| 9c4e373907 | |||
| a848d216be | |||
| d5e85c770d | |||
| 321da2a166 | |||
| 3bb350ee18 | |||
| 7bdf274246 | |||
| 7f4c20c4dd | |||
| 001aec0513 | |||
| 33da31fcc9 | |||
| 16e8a47e72 | |||
| ff371e341b | |||
| 9f678268c4 | |||
| 5b8adf01ca | |||
| 6c74143c83 | |||
| 588224e1f0 | |||
| 38cfa07dd1 | |||
| c16ee3153f | |||
| 1dbca2859f | |||
| 9d8e7dbebf | |||
| 66af35b561 | |||
| 13366c2c6b | |||
| b2d96b4ad7 | |||
| fdbc483d96 | |||
| 8019dbf397 | |||
| 10ea783b78 | |||
| 577786a510 |
123
.gitea/workflows/yaml-lint.yml
Normal file
123
.gitea/workflows/yaml-lint.yml
Normal file
File diff suppressed because it is too large
Load Diff
11
.spectral.yaml
Normal file
11
.spectral.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
rules:
|
||||
path-starts-with-slash-no-spaces:
|
||||
description: Path must start with / and contain no spaces
|
||||
message: "Path '{{property}}' must start with '/' and must not contain spaces"
|
||||
severity: error
|
||||
given: $.paths
|
||||
then:
|
||||
field: "@key"
|
||||
function: pattern
|
||||
functionOptions:
|
||||
match: "^\\/[^\\s]*$"
|
||||
17
.yamllint
Normal file
17
.yamllint
Normal file
@ -0,0 +1,17 @@
|
||||
# .yamllint
|
||||
extends: default
|
||||
|
||||
yaml-files:
|
||||
- '*.yaml'
|
||||
- '*.yml'
|
||||
|
||||
rules:
|
||||
line-length:
|
||||
max: 120
|
||||
level: warning
|
||||
indentation:
|
||||
spaces: 2 # number of spaces per indent level
|
||||
indent-sequences: consistent # or true/false/whatever
|
||||
level: error
|
||||
document-start:
|
||||
level: warning
|
||||
Reference in New Issue
Block a user