Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit 2d9d876

Browse files
ascariandreavecna
andcommittedMar 1, 2022
docs(tktrex): created documentation project for packages with open api (#278)
* incomplete progress in API specifications and swagger converter porting * fix: tktrex open docs api for swagger (#411) * chore(workspace): moved swagger provider to shared package * fix: produce open doc api for tktrex * feat: documentation setup * chore: tktrex shared workspace * fix: documentation setup * fix: commit docs folder * fix: guardoni docs inclusion * fix: ycai api docs inclusion * fix: tktrex docs * refactor: documented endpoint POC * chore: ignore local folder for ssh keys * docs: resolved link errors for build * docs: avoid double 'docs' path in url * refactor: removed api prefix from tktrex endpoints * docs(tktrex): added title and description to endpoint * docs: fix footer url Co-authored-by: Claudio <[email protected]>
1 parent c8dd043 commit 2d9d876

File tree

650 files changed

+14479
-716
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

650 files changed

+14479
-716
lines changed
 

‎.eslintrc

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"extends": [
3+
"standard-with-typescript",
4+
"prettier"
5+
],
6+
"parser": "@typescript-eslint/parser",
7+
"parserOptions": {
8+
"ecmaVersion": 9,
9+
"ecmaFeatures": {
10+
"jsx": true
11+
},
12+
"sourceType": "module",
13+
"project": ["./tsconfig.json"]
14+
},
15+
"plugins": ["@typescript-eslint", "node"],
16+
"env": {
17+
"es6": true,
18+
"node": true,
19+
"jest": true
20+
},
21+
"globals": {
22+
"_": true
23+
},
24+
"settings": {
25+
"node": {
26+
"version": "14"
27+
}
28+
},
29+
"ignorePatterns": ["__tests__"],
30+
"rules": {
31+
"no-console": 1,
32+
"no-use-before-define": "off",
33+
"@typescript-eslint/no-use-before-define": ["error"],
34+
"@typescript-eslint/return-await": ["off"],
35+
"@typescript-eslint/promise-function-async": ["off"],
36+
"@typescript-eslint/no-redeclare": ["off"],
37+
"@typescript-eslint/restrict-plus-operands": ["off"],
38+
"@typescript-eslint/restrict-template-expressions": ["off"],
39+
"@typescript-eslint/strict-boolean-expressions": ["off"],
40+
"react/jsx-key": "off"
41+
}
42+
}

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ coverage
3030
!.yarn/releases
3131
!.yarn/sdks
3232
!.yarn/versions
33+
.ssh-keys

0 commit comments

Comments
 (0)
This repository has been archived.