Skip to content

Commit 4c07efd

Browse files
committed
chore(deps): upgrade
1 parent a5242c8 commit 4c07efd

File tree

5 files changed

+73
-65
lines changed

5 files changed

+73
-65
lines changed

.eslintrc.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ module.exports = {
22
parser: '@typescript-eslint/parser',
33
parserOptions: {
44
project: 'tsconfig.json',
5+
tsconfigRootDir: __dirname,
56
sourceType: 'module',
67
},
78
plugins: ['@typescript-eslint/eslint-plugin'],
89
extends: [
9-
'plugin:@typescript-eslint/eslint-recommended',
1010
'plugin:@typescript-eslint/recommended',
11-
'prettier',
1211
'plugin:prettier/recommended',
1312
],
1413
root: true,
1514
env: {
1615
node: true,
1716
jest: true,
1817
},
18+
ignorePatterns: ['.eslintrc.js'],
1919
rules: {
2020
'@typescript-eslint/interface-name-prefix': 'off',
2121
'@typescript-eslint/explicit-function-return-type': 'off',
2222
'@typescript-eslint/explicit-module-boundary-types': 'off',
23-
'@typescript-eslint/no-explicit-any': 2,
23+
'@typescript-eslint/no-explicit-any': 'off',
2424
'no-unused-vars': 'off',
2525
'@typescript-eslint/no-unused-vars': ['error'],
2626
'require-await': 'off',

.prettierrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"singleQuote": true,
33
"trailingComma": "all"
4-
}
4+
}

nest-cli.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "https://json.schemastore.org/nest-cli",
23
"collection": "@nestjs/schematics",
34
"sourceRoot": "src",
45
"compilerOptions": {

package-lock.json

+65-58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@
7575
"@types/passport-jwt": "3.0.6",
7676
"@types/supertest": "2.0.12",
7777
"@types/twitter": "1.7.1",
78-
"@typescript-eslint/eslint-plugin": "5.33.1",
79-
"@typescript-eslint/parser": "5.33.1",
78+
"@typescript-eslint/eslint-plugin": "5.36.2",
79+
"@typescript-eslint/parser": "5.36.2",
8080
"aws-sdk": "2.1194.0",
8181
"env-cmd": "10.1.0",
8282
"eslint": "8.23.0",
@@ -93,7 +93,7 @@
9393
"ts-node": "10.9.1",
9494
"tsconfig-paths": "4.1.0",
9595
"tslib": "2.4.0",
96-
"typescript": "4.7.4"
96+
"typescript": "4.8.2"
9797
},
9898
"jest": {
9999
"moduleFileExtensions": [

0 commit comments

Comments
 (0)