Skip to content

Commit c912005

Browse files
dependabot[bot]nunocaseirojoaofrparreira
authored
chore(deps): bump serve-static, @nestjs/core, @nestjs/mongoose, @nestjs/platform-express, @nestjs/platform-socket.io, @nestjs/swagger, @nestjs/websockets, express and @nestjs/testing in /backend (#1548)
Co-authored-by: nunocaseiro <[email protected]> Co-authored-by: João Parreira <[email protected]>
1 parent d5d2792 commit c912005

File tree

283 files changed

+26743
-65370
lines changed

Some content is hidden

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

283 files changed

+26743
-65370
lines changed

backend/.eslintrc.json

+46-48
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,55 @@
11
{
22
"root": true,
33
"extends": [
4-
"eslint:recommended",
5-
"plugin:@typescript-eslint/eslint-recommended",
6-
"plugin:@typescript-eslint/recommended",
7-
"plugin:prettier/recommended"
4+
"eslint:recommended",
5+
"plugin:@typescript-eslint/eslint-recommended",
6+
"plugin:@typescript-eslint/recommended",
7+
"plugin:prettier/recommended"
88
],
99
"plugins": ["import", "@typescript-eslint"],
1010
"parser": "@typescript-eslint/parser",
1111
"rules": {
12-
"prettier/prettier": [
13-
"error",
14-
{
15-
"printWidth": 100,
16-
"singleQuote": true
17-
}
18-
],
19-
20-
"prefer-arrow-callback": "off",
21-
"prefer-destructuring": [
22-
"error",
23-
{
24-
"VariableDeclarator": {
25-
"array": false
26-
}
27-
}
28-
],
29-
30-
"no-console": "error",
31-
"import/extensions": "off",
32-
"arrow-body-style": "off",
33-
"@typescript-eslint/no-explicit-any": "off",
34-
"@typescript-eslint/no-unused-vars": [
35-
"error",
36-
{ "argsIgnorePattern": "^_" }
37-
],
38-
39-
"sort-imports": [
40-
"error",
41-
{
42-
"ignoreDeclarationSort": true
43-
}
44-
],
45-
46-
"padding-line-between-statements": [
47-
"error",
48-
{ "blankLine": "never", "prev": "*", "next": "import" },
49-
{ "blankLine": "always", "prev": "*", "next": "export" },
50-
{ "blankLine": "always", "prev": "*", "next": "return" },
51-
{ "blankLine": "always", "prev": "*", "next": "if" },
52-
{ "blankLine": "always", "prev": "*", "next": "case" },
53-
{ "blankLine": "always", "prev": "*", "next": "default" }
54-
]
12+
"@typescript-eslint/ban-ts-comment": "error",
13+
"prettier/prettier": [
14+
"error",
15+
{
16+
"printWidth": 100,
17+
"singleQuote": true
18+
}
19+
],
20+
21+
"prefer-arrow-callback": "off",
22+
"prefer-destructuring": [
23+
"error",
24+
{
25+
"VariableDeclarator": {
26+
"array": false
27+
}
28+
}
29+
],
30+
31+
"no-console": "error",
32+
"import/extensions": "off",
33+
"arrow-body-style": "off",
34+
"@typescript-eslint/no-explicit-any": "off",
35+
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
36+
37+
"sort-imports": [
38+
"error",
39+
{
40+
"ignoreDeclarationSort": true
41+
}
42+
],
43+
44+
"padding-line-between-statements": [
45+
"error",
46+
{ "blankLine": "never", "prev": "*", "next": "import" },
47+
{ "blankLine": "always", "prev": "*", "next": "export" },
48+
{ "blankLine": "always", "prev": "*", "next": "return" },
49+
{ "blankLine": "always", "prev": "*", "next": "if" },
50+
{ "blankLine": "always", "prev": "*", "next": "case" },
51+
{ "blankLine": "always", "prev": "*", "next": "default" }
52+
]
5553
},
5654
"ignorePatterns": ["dist"]
57-
}
55+
}

0 commit comments

Comments
 (0)