Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: yarn audit #487

Merged
merged 4 commits into from May 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -60,6 +60,7 @@
"@types/node": "^10.12.2",
"@types/semver": "^5.5.0",
"all-contributors-cli": "^6.0.0",
"babel-code-frame": "^6.26.0",
bradzacher marked this conversation as resolved.
Show resolved Hide resolved
"cz-conventional-changelog": "2.1.0",
"eslint": "^5.12.1",
"eslint-plugin-eslint-plugin": "^2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-plugin-tslint/tests/index.spec.ts
Expand Up @@ -119,7 +119,7 @@ ruleTester.run('tslint/config', rules.config, {
errors: [
{
message:
"Operands of '+' operation must either be both strings or both numbers, consider using template literals (tslint:restrict-plus-operands)",
'Operands of \'+\' operation must either be both strings or both numbers, but found 1 + "2". Consider using template literals. (tslint:restrict-plus-operands)',
},
],
},
Expand Down Expand Up @@ -174,7 +174,7 @@ describe('tslint/error', () => {

expect(console.warn).toHaveBeenCalledWith(
expect.stringContaining(
'No valid rules have been specified for TypeScript files',
'Tried to lint <input> but found no valid, enabled rules for this file type and file path in the resolved configuration.',
),
);
jest.resetAllMocks();
Expand Down
Expand Up @@ -16668,7 +16668,7 @@ Object {
},
"childScopes": Array [],
"functionExpressionScope": false,
"isStrict": true,
"isStrict": false,
"references": Array [],
"throughReferences": Array [],
"type": "function",
Expand Down