Skip to content

Commit 29d37f4

Browse files
authored
perf: update deps (#101)
1 parent 4b7ceec commit 29d37f4

File tree

6 files changed

+815
-168
lines changed

6 files changed

+815
-168
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
"**/hosted-git-info": "^4.0.1"
2222
},
2323
"devDependencies": {
24-
"@types/jest": "^26.0.23",
25-
"@types/lodash": "^4.14.170",
24+
"@types/jest": "^26.0.24",
25+
"@types/lodash": "^4.14.171",
2626
"@types/node": "^15.12.2",
27-
"coveralls": "^3.1.0",
27+
"coveralls": "^3.1.1",
2828
"find-git-root": "^1.0.4",
29-
"jest": "^27.0.4",
29+
"jest": "^27.0.6",
3030
"lerna": "^4.0.0",
3131
"lodash": "^4.17.21",
3232
"snazzy": "^9.0.0",
3333
"ts-jest": "^27.0.3",
34-
"typedoc": "0.21.0-beta.3",
34+
"typedoc": "0.21.2",
3535
"typescript": "^4.3.2",
3636
"yargs": "^17.0.1"
3737
}

packages/eslint-config-qiwi/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"author": "QIWI <[email protected]>",
3232
"license": "MIT",
3333
"dependencies": {
34-
"@typescript-eslint/eslint-plugin": "^4.26.1",
35-
"@typescript-eslint/parser": "^4.26.1",
34+
"@typescript-eslint/eslint-plugin": "^4.28.2",
35+
"@typescript-eslint/parser": "^4.28.2",
3636
"eslint-config-standard-qiwi": "^16.0.3",
3737
"eslint-plugin-array-func": "^3.1.7",
3838
"eslint-plugin-import": "^2.23.4",
@@ -42,16 +42,16 @@
4242
"eslint-plugin-react": "^7.24.0",
4343
"eslint-plugin-react-hooks": "^4.2.0",
4444
"eslint-plugin-simple-import-sort": "^7.0.0",
45-
"eslint-plugin-sonarjs": "^0.7.0",
45+
"eslint-plugin-sonarjs": "^0.9.1",
4646
"eslint-plugin-unicorn": "^33.0.1",
4747
"typescript": "*"
4848
},
4949
"devDependencies": {
5050
"@swissquote/crafty-preset-jest": "^1.15.0",
51-
"@types/jest": "^26.0.23",
52-
"coveralls": "^3.1.0",
53-
"eslint": "^7.28.0",
54-
"jest": "^27.0.4",
51+
"@types/jest": "^26.0.24",
52+
"coveralls": "^3.1.1",
53+
"eslint": "^7.30.0",
54+
"jest": "^27.0.6",
5555
"stdstream-snapshot": "^1.2.5",
5656
"ts-jest": "^27.0.3"
5757
},

packages/eslint-config-qiwi/src/test/ts/__snapshots__/index.ts.snap

Lines changed: 67 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -12,71 +12,72 @@ Object {
1212
1:1 error Run autofix to sort these imports! simple-import-sort/imports
1313
1414
/packages/eslint-config-qiwi/src/test/ts/rules/some-rules.ts
15-
1:20 warning Missing return type on function @typescript-eslint/explicit-module-boundary-types
16-
1:21 warning Argument 'foo' should be typed @typescript-eslint/explicit-module-boundary-types
17-
3:7 error 'name' is assigned a value but never used @typescript-eslint/no-unused-vars
18-
4:7 error It's not necessary to initialize 'namefoo' to undefined no-undef-init
19-
4:7 error 'namefoo' is assigned a value but never used @typescript-eslint/no-unused-vars
20-
4:7 error 'namefoo' is never reassigned. Use 'const' instead prefer-const
21-
4:17 error Do not use useless \`undefined\` unicorn/no-useless-undefined
22-
5:7 error 'message' is assigned a value but never used @typescript-eslint/no-unused-vars
23-
5:7 error 'message' is never reassigned. Use 'const' instead prefer-const
24-
5:22 error Unnecessary escape character: \\\\o no-useless-escape
25-
6:3 error Unexpected var, use let or const instead no-var
26-
6:7 error 'pattern1' is assigned a value but never used @typescript-eslint/no-unused-vars
27-
6:18 error Use Unicode escapes instead of hexadecimal escapes unicorn/no-hex-escape
28-
6:18 error Unexpected control character(s) in regular expression: \\\\x1f no-control-regex
29-
6:18 error Use uppercase characters for the value of the escape sequence unicorn/escape-case
30-
6:24 error Extra semicolon semi
31-
7:3 error Unexpected var, use let or const instead no-var
32-
7:7 error 'pattern2' is assigned a value but never used @typescript-eslint/no-unused-vars
33-
7:18 error Use a regular expression literal instead of the 'RegExp' constructor prefer-regex-literals
34-
7:29 error Use uppercase characters for the value of the escape sequence unicorn/escape-case
35-
7:29 error Use Unicode escapes instead of hexadecimal escapes unicorn/no-hex-escape
36-
7:29 error Unexpected control character(s) in regular expression: \\\\x1f no-control-regex
37-
7:29 error Strings must use singlequote quotes
38-
7:36 error Extra semicolon semi
39-
9:9 error 'myRegex' is assigned a value but never used @typescript-eslint/no-unused-vars
40-
9:19 error Empty class no-empty-character-class
41-
10:3 error Object prototype is read only, properties should not be added no-extend-native
42-
11:3 error Unexpected var, use let or const instead no-var
43-
15:5 error This case's code block is the same as the block for the case on line 13 sonarjs/no-duplicated-branches
44-
15:5 error Duplicate case label no-duplicate-case
45-
15:5 error Expected a 'break' statement before 'case' no-fallthrough
46-
17:5 error This case's code block is the same as the block for the case on line 15 sonarjs/no-duplicated-branches
47-
17:5 error Expected a 'break' statement before 'case' no-fallthrough
48-
21:10 error Expected '===' and instead saw '==' eqeqeq
49-
25:7 error Do not use the '===' operator to compare against -0 no-compare-neg-zero
50-
26:10 error This number literal will lose precision at runtime no-loss-of-precision
51-
26:10 error Octal literals should not be used no-octal
52-
27:5 error Move function declaration to function body root no-inner-declarations
53-
27:14 error 'declaration' is defined but never used @typescript-eslint/no-unused-vars
54-
27:25 error Missing space before function parentheses space-before-function-paren
55-
27:28 error Unexpected empty function 'declaration' @typescript-eslint/no-empty-function
56-
30:3 error Expected space(s) after \\"if\\" keyword-spacing
57-
30:6 error There should be no space after this paren space-in-parens
58-
30:7 error Unexpected constant condition no-constant-condition
59-
30:11 error There should be no space before this paren space-in-parens
60-
31:9 error Expected a conditional expression and instead saw an assignment no-cond-assign
61-
31:9 error Unexpected constant condition no-constant-condition
62-
37:11 error 'z' is assigned a value but never used @typescript-eslint/no-unused-vars
63-
42:45 error Missing space before => arrow-spacing
64-
42:48 error Missing space after => arrow-spacing
65-
45:8 warning Missing return type on function @typescript-eslint/explicit-module-boundary-types
66-
45:26 error Missing space before function parentheses space-before-function-paren
67-
46:10 error Redundant use of \`await\` on a return value no-return-await
68-
46:21 error Extra semicolon semi
69-
50:18 error Unexpected empty constructor @typescript-eslint/no-empty-function
70-
55:16 warning Argument 'value' should be typed @typescript-eslint/explicit-module-boundary-types
71-
56:17 error Extra semicolon semi
72-
60:8 warning Missing return type on function @typescript-eslint/explicit-module-boundary-types
73-
61:3 error The update clause in this loop moves the variable in the wrong direction for-direction
74-
61:8 error Unexpected var, use let or const instead no-var
75-
61:32 error Empty block statement no-empty
76-
62:3 error The update clause in this loop moves the variable in the wrong direction for-direction
77-
62:8 error Unexpected var, use let or const instead no-var
78-
62:33 error Empty block statement no-empty
79-
65:1 error Read-only global 'window' should not be modified no-global-assign
15+
1:20 warning Missing return type on function @typescript-eslint/explicit-module-boundary-types
16+
1:21 warning Argument 'foo' should be typed @typescript-eslint/explicit-module-boundary-types
17+
3:7 error 'name' is assigned a value but never used @typescript-eslint/no-unused-vars
18+
4:7 error It's not necessary to initialize 'namefoo' to undefined no-undef-init
19+
4:7 error 'namefoo' is assigned a value but never used @typescript-eslint/no-unused-vars
20+
4:7 error 'namefoo' is never reassigned. Use 'const' instead prefer-const
21+
4:17 error Do not use useless \`undefined\` unicorn/no-useless-undefined
22+
5:7 error 'message' is assigned a value but never used @typescript-eslint/no-unused-vars
23+
5:7 error 'message' is never reassigned. Use 'const' instead prefer-const
24+
5:22 error Unnecessary escape character: \\\\o no-useless-escape
25+
6:3 error Unexpected var, use let or const instead no-var
26+
6:7 error 'pattern1' is assigned a value but never used @typescript-eslint/no-unused-vars
27+
6:18 error Use Unicode escapes instead of hexadecimal escapes unicorn/no-hex-escape
28+
6:18 error Unexpected control character(s) in regular expression: \\\\x1f no-control-regex
29+
6:18 error Use uppercase characters for the value of the escape sequence unicorn/escape-case
30+
6:24 error Extra semicolon semi
31+
7:3 error Unexpected var, use let or const instead no-var
32+
7:7 error 'pattern2' is assigned a value but never used @typescript-eslint/no-unused-vars
33+
7:18 error Use a regular expression literal instead of the 'RegExp' constructor prefer-regex-literals
34+
7:29 error Use uppercase characters for the value of the escape sequence unicorn/escape-case
35+
7:29 error Use Unicode escapes instead of hexadecimal escapes unicorn/no-hex-escape
36+
7:29 error Unexpected control character(s) in regular expression: \\\\x1f no-control-regex
37+
7:29 error Strings must use singlequote quotes
38+
7:36 error Extra semicolon semi
39+
9:9 error 'myRegex' is assigned a value but never used @typescript-eslint/no-unused-vars
40+
9:19 error Empty class no-empty-character-class
41+
10:3 error Object prototype is read only, properties should not be added no-extend-native
42+
11:3 error Unexpected var, use let or const instead no-var
43+
15:5 error This case's code block is the same as the block for the case on line 13 sonarjs/no-duplicated-branches
44+
15:5 error Duplicate case label no-duplicate-case
45+
15:5 error Expected a 'break' statement before 'case' no-fallthrough
46+
17:5 error This case's code block is the same as the block for the case on line 15 sonarjs/no-duplicated-branches
47+
17:5 error Expected a 'break' statement before 'case' no-fallthrough
48+
21:10 error Expected '===' and instead saw '==' eqeqeq
49+
25:7 error Do not use the '===' operator to compare against -0 no-compare-neg-zero
50+
26:10 error This number literal will lose precision at runtime no-loss-of-precision
51+
26:10 error Octal literals should not be used no-octal
52+
27:5 error Move function declaration to function body root no-inner-declarations
53+
27:14 error 'declaration' is defined but never used @typescript-eslint/no-unused-vars
54+
27:25 error Missing space before function parentheses space-before-function-paren
55+
27:28 error Unexpected empty function 'declaration' @typescript-eslint/no-empty-function
56+
30:3 error Expected space(s) after \\"if\\" keyword-spacing
57+
30:6 error There should be no space after this paren space-in-parens
58+
30:7 error {\\"message\\":\\"This always evaluates to truthy. Consider refactoring this code.\\",\\"secondaryLocations\\":]} sonarjs/no-gratuitous-expressions
59+
30:7 error Unexpected constant condition no-constant-condition
60+
30:11 error There should be no space before this paren space-in-parens
61+
31:9 error Expected a conditional expression and instead saw an assignment no-cond-assign
62+
31:9 error Unexpected constant condition no-constant-condition
63+
37:11 error 'z' is assigned a value but never used @typescript-eslint/no-unused-vars
64+
42:45 error Missing space before => arrow-spacing
65+
42:48 error Missing space after => arrow-spacing
66+
45:8 warning Missing return type on function @typescript-eslint/explicit-module-boundary-types
67+
45:26 error Missing space before function parentheses space-before-function-paren
68+
46:10 error Redundant use of \`await\` on a return value no-return-await
69+
46:21 error Extra semicolon semi
70+
50:18 error Unexpected empty constructor @typescript-eslint/no-empty-function
71+
55:16 warning Argument 'value' should be typed @typescript-eslint/explicit-module-boundary-types
72+
56:17 error Extra semicolon semi
73+
60:8 warning Missing return type on function @typescript-eslint/explicit-module-boundary-types
74+
61:3 error The update clause in this loop moves the variable in the wrong direction for-direction
75+
61:8 error Unexpected var, use let or const instead no-var
76+
61:32 error Empty block statement no-empty
77+
62:3 error The update clause in this loop moves the variable in the wrong direction for-direction
78+
62:8 error Unexpected var, use let or const instead no-var
79+
62:33 error Empty block statement no-empty
80+
65:1 error Read-only global 'window' should not be modified no-global-assign
8081
8182
/packages/eslint-config-qiwi/src/test/ts/rules/trailing-comma-fail.ts
8283
3:7 error Missing trailing comma comma-dangle
@@ -86,7 +87,7 @@ Object {
8687
/packages/eslint-config-qiwi/src/test/ts/rules/trailing-comma.ts
8788
6:27 warning Missing return type on function @typescript-eslint/explicit-module-boundary-types
8889
89-
70 problems (63 errors, 7 warnings)
90+
71 problems (64 errors, 7 warnings)
9091
26 errors and 0 warnings potentially fixable with the \`--fix\` option.",
9192
}
9293
`;

packages/prettier-config-qiwi/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
"license": "MIT",
2929
"devDependencies": {
3030
"@swissquote/crafty-preset-jest": "^1.15.0",
31-
"coveralls": "^3.1.0",
32-
"jest": "^27.0.4",
33-
"prettier": "^2.3.1",
31+
"coveralls": "^3.1.1",
32+
"jest": "^27.0.6",
33+
"prettier": "^2.3.2",
3434
"stdstream-snapshot": "^1.2.5",
3535
"ts-jest": "^27.0.3",
3636
"typescript": "^4.3.2"

packages/tslint-config-qiwi/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"tslint-react": "^5.0.0"
3636
},
3737
"devDependencies": {
38-
"@types/jest": "^26.0.23",
39-
"coveralls": "^3.1.0",
40-
"jest": "^27.0.4",
38+
"@types/jest": "^26.0.24",
39+
"coveralls": "^3.1.1",
40+
"jest": "^27.0.6",
4141
"ts-jest": "^27.0.3",
4242
"tslint": "^6.1.3",
4343
"typescript": "^4.3.2",

0 commit comments

Comments
 (0)