Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
This cats service allows you to

    curl -v http://127.0.0.1:3000/cats -H "content-type: application/json" -d '{"name": "charly"}'
    curl -v 'http://127.0.0.1:3000/cats/charly'
    curl -v 'http://127.0.0.1:3000/cats'

Started from github.com/nestjs/typescript-starter @7c21aea7e3b0767031c12345a701842ba483832e:

Author: Kamil Myśliwiec <[email protected]>
Date:   Wed Feb 7 11:11:32 2024 +0100

    chore: update deps

Then added cats stuff according to the Getting Started docs.
  • Loading branch information
srenatus committed Mar 13, 2024
0 parents commit 0aef7a4
Show file tree
Hide file tree
Showing 25 changed files with 10,540 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};
Loading

0 comments on commit 0aef7a4

Please sign in to comment.