Skip to content

Commit f029dba

Browse files
ldrickbradzacher
authored andcommitted
fix: upgrade lockfile versions (#487)
1 parent 3bf725f commit f029dba

File tree

4 files changed

+1167
-985
lines changed

4 files changed

+1167
-985
lines changed

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"@types/node": "^10.12.2",
6161
"@types/semver": "^5.5.0",
6262
"all-contributors-cli": "^6.0.0",
63+
"babel-code-frame": "^6.26.0",
6364
"cz-conventional-changelog": "2.1.0",
6465
"eslint": "^5.12.1",
6566
"eslint-plugin-eslint-plugin": "^2.0.1",

Diff for: packages/eslint-plugin-tslint/tests/index.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ ruleTester.run('tslint/config', rules.config, {
119119
errors: [
120120
{
121121
message:
122-
"Operands of '+' operation must either be both strings or both numbers, consider using template literals (tslint:restrict-plus-operands)",
122+
'Operands of \'+\' operation must either be both strings or both numbers, but found 1 + "2". Consider using template literals. (tslint:restrict-plus-operands)',
123123
},
124124
],
125125
},
@@ -174,7 +174,7 @@ describe('tslint/error', () => {
174174

175175
expect(console.warn).toHaveBeenCalledWith(
176176
expect.stringContaining(
177-
'No valid rules have been specified for TypeScript files',
177+
'Tried to lint <input> but found no valid, enabled rules for this file type and file path in the resolved configuration.',
178178
),
179179
);
180180
jest.resetAllMocks();

Diff for: packages/parser/tests/lib/__snapshots__/scope-analysis.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -16668,7 +16668,7 @@ Object {
1666816668
},
1666916669
"childScopes": Array [],
1667016670
"functionExpressionScope": false,
16671-
"isStrict": true,
16671+
"isStrict": false,
1667216672
"references": Array [],
1667316673
"throughReferences": Array [],
1667416674
"type": "function",

0 commit comments

Comments
 (0)