Skip to content

Commit

Permalink
chore: bump dependencies (#11162)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Mar 6, 2021
1 parent fedafc3 commit 26b2237
Show file tree
Hide file tree
Showing 25 changed files with 6,065 additions and 5,730 deletions.
6 changes: 2 additions & 4 deletions .eslintrc.js
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
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
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 testshould
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 testassert
Expected value "hello sunshine"
assert.strictEqual(received, expected)
Expected value to strictly be equal to:
"hello sunshine"
Received:
"hello world"
Expand Down

0 comments on commit 26b2237

Please sign in to comment.