Skip to content

Commit ab45bdc

Browse files
committed
it works-ish
0 parents  commit ab45bdc

32 files changed

+17948
-0
lines changed

.eslintrc.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
parserOptions: {
4+
project: 'tsconfig.json',
5+
tsconfigRootDir : __dirname,
6+
sourceType: 'module',
7+
},
8+
plugins: ['@typescript-eslint/eslint-plugin'],
9+
extends: [
10+
'plugin:@typescript-eslint/recommended',
11+
'plugin:prettier/recommended',
12+
],
13+
root: true,
14+
env: {
15+
node: true,
16+
jest: true,
17+
},
18+
ignorePatterns: ['.eslintrc.js'],
19+
rules: {
20+
'@typescript-eslint/interface-name-prefix': 'off',
21+
'@typescript-eslint/explicit-function-return-type': 'off',
22+
'@typescript-eslint/explicit-module-boundary-types': 'off',
23+
'@typescript-eslint/no-explicit-any': 'off',
24+
},
25+
};

.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# compiled output
2+
/dist
3+
/node_modules
4+
5+
# env
6+
.env
7+
8+
# Logs
9+
logs
10+
*.log
11+
npm-debug.log*
12+
pnpm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
lerna-debug.log*
16+
17+
# OS
18+
.DS_Store
19+
20+
# Tests
21+
/coverage
22+
/.nyc_output
23+
24+
# IDEs and editors
25+
/.idea
26+
.project
27+
.classpath
28+
.c9/
29+
*.launch
30+
.settings/
31+
*.sublime-workspace
32+
33+
# IDE - VSCode
34+
.vscode/*
35+
!.vscode/settings.json
36+
!.vscode/tasks.json
37+
!.vscode/launch.json
38+
!.vscode/extensions.json
39+
40+
notes.md

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all"
4+
}

README.md

Whitespace-only changes.

nest-cli.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://json.schemastore.org/nest-cli",
3+
"collection": "@nestjs/schematics",
4+
"sourceRoot": "src"
5+
}

0 commit comments

Comments
 (0)