Skip to content

Commit

Permalink
meta: update dependency @ephys/eslint-config-typescript to v20.1.3 (#…
Browse files Browse the repository at this point in the history
…17278)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alyx <zoe@ephys.dev>
  • Loading branch information
renovate[bot] and ephys committed Apr 12, 2024
1 parent 6a5ea6c commit 98db428
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 177 deletions.
50 changes: 0 additions & 50 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"packages/*"
],
"devDependencies": {
"@ephys/eslint-config-typescript": "20.1.2",
"@ephys/eslint-config-typescript": "20.1.3",
"@rushstack/eslint-patch": "1.10.2",
"@sequelize/utils": "workspace:*",
"@types/chai": "4.3.14",
Expand Down
48 changes: 0 additions & 48 deletions packages/core/CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions packages/core/test/integration/model/internals.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ describe('setTransactionFromCls', () => {
setTransactionFromCls(options, sequelize);

expect(options.transaction).to.eq(null);
// eslint-disable-next-line unicorn/no-useless-undefined -- false positive.
expect(options.connection).to.eq(undefined);
});
});
Expand All @@ -80,7 +79,6 @@ describe('setTransactionFromCls', () => {

setTransactionFromCls(options, sequelize);

// eslint-disable-next-line unicorn/no-useless-undefined -- false positive.
expect(options.transaction).to.eq(undefined);
expect(options.connection).to.eq(connection);
});
Expand Down
1 change: 0 additions & 1 deletion packages/ibmi/src/connection-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ export class IBMiConnectionManager extends AbstractConnectionManager<IBMiDialect

resolve();

// eslint-disable-next-line unicorn/no-useless-undefined -- bad typings in OBDC
return undefined;
});
});
Expand Down
35 changes: 0 additions & 35 deletions packages/utils/CHANGELOG.md

This file was deleted.

1 change: 0 additions & 1 deletion packages/utils/src/common/__tests__/inspect.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ describe('inspect function', () => {
expect(inspect(123)).to.equal('123');
expect(inspect(123n)).to.equal('123n');
expect(inspect(null)).to.equal('null');
// eslint-disable-next-line unicorn/no-useless-undefined -- false positive
expect(inspect(undefined)).to.equal('undefined');
expect(inspect(true)).to.equal('true');
expect(inspect(false)).to.equal('false');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ describe('isAnyObject', () => {
expect(isAnyObject(42)).to.be.false;
expect(isAnyObject('string')).to.be.false;
expect(isAnyObject(true)).to.be.false;
// eslint-disable-next-line unicorn/no-useless-undefined -- false positive
expect(isAnyObject(undefined)).to.be.false;
expect(isAnyObject(Symbol('symbol'))).to.be.false;
expect(isAnyObject(123n)).to.be.false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { expectTypeOf } from 'expect-type';
describe('isNullish', () => {
it('returns true for null and undefined', () => {
expect(isNullish(null)).to.be.true;
// eslint-disable-next-line unicorn/no-useless-undefined -- false positive
expect(isNullish(undefined)).to.be.true;
});

Expand Down

0 comments on commit 98db428

Please sign in to comment.