Skip to content

Commit 7a0d81f

Browse files
authored
Merge pull request #1 from StatelessStudio/v1.0.0
V1.0.0
2 parents 5ab7f73 + 8be0c1b commit 7a0d81f

135 files changed

Lines changed: 11310 additions & 53 deletions

File tree

Some content is hidden

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

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# API Configuration
2+
APP_TITLE=api-machine
3+
API_PORT=4000

.eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,13 @@ module.exports = {
4545
"@typescript-eslint/promise-function-async": 1,
4646
"@typescript-eslint/no-var-requires": 2,
4747
},
48+
overrides: [
49+
{
50+
files: ["examples/**/*.ts", "scripts/**/*.ts"],
51+
rules: {
52+
"@typescript-eslint/no-unused-vars": [1, { "argsIgnorePattern": "request|response" }],
53+
"no-console": 0
54+
}
55+
},
56+
]
4857
};

.eslintrc.prod.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,17 @@
44
"rules": {
55
"no-console": 2,
66
"no-debugger": 2
7-
}
7+
},
8+
"overrides": [
9+
{
10+
"files": ["examples/**/*.ts", "scripts/**/*.ts"],
11+
"rules": {
12+
"@typescript-eslint/no-unused-vars": [
13+
1,
14+
{ "argsIgnorePattern": "request|response" }
15+
],
16+
"no-console": 0
17+
}
18+
}
19+
]
820
}

.vscode/launch.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"type": "node",
1010
"request": "launch",
1111
"args": [
12-
"scripts/example.ts"
12+
"scripts/index.ts",
13+
"openapi"
1314
],
1415
"runtimeArgs": [
1516
"-r",
16-
"ts-node/register"
17+
"ts-node/register",
1718
],
1819
"cwd": "${workspaceRoot}",
1920
"internalConsoleOptions": "openOnSessionStart"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# ts-rest - Changelog
1+
# api-machine - Changelog

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2022 ts-rest and others
1+
Copyright (c) 2022 api-machine and others
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)