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

chore: bump dependencies #11162

Merged
merged 4 commits into from
Mar 6, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,14 @@ module.exports = {
},
extends: [
'plugin:import/errors',
'prettier',
'plugin:eslint-comments/recommended',
'plugin:prettier/recommended',
],
overrides: [
{
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:import/typescript',
'prettier/@typescript-eslint',
],
files: ['*.ts', '*.tsx'],
plugins: ['@typescript-eslint/eslint-plugin', 'local'],
Expand Down Expand Up @@ -258,7 +257,7 @@ module.exports = {
parserOptions: {
sourceType: 'module',
},
plugins: ['markdown', 'import', 'jest', 'prettier'],
plugins: ['markdown', 'import', 'jest'],
rules: {
'accessor-pairs': ['warn', {setWithoutGet: true}],
'block-scoped-var': 'off',
Expand Down Expand Up @@ -442,7 +441,6 @@ module.exports = {
'prefer-arrow-callback': ['error', {allowNamedFunctions: true}],
'prefer-const': 'error',
'prefer-template': 'off',
'prettier/prettier': 'error',
quotes: [
'error',
'single',
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-2.4.0.cjs
yarnPath: .yarn/releases/yarn-2.4.1.cjs
15 changes: 12 additions & 3 deletions e2e/__tests__/__snapshots__/chaiAssertionLibrary.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ exports[`chai assertion errors should display properly 1`] = `
FAIL __tests__/chai_assertion.js
● chai.js assertion library test › expect

Expected value "hello sunshine"
assert.strictEqual(received, expected)

Expected value to strictly be equal to:
"hello sunshine"
Received:
"hello world"

Expand All @@ -31,7 +34,10 @@ FAIL __tests__/chai_assertion.js

● chai.js assertion library test › should

Expected value "hello world"
assert.strictEqual(received, expected)

Expected value to strictly be equal to:
"hello world"
Received:
"hello sunshine"

Expand All @@ -58,7 +64,10 @@ FAIL __tests__/chai_assertion.js

● chai.js assertion library test › assert

Expected value "hello sunshine"
assert.strictEqual(received, expected)

Expected value to strictly be equal to:
"hello sunshine"
Received:
"hello world"

Expand Down
Loading