mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
ignore eslint rule no-empty-interface
This commit is contained in:
parent
39982759f2
commit
25e461188c
@ -1,3 +1,5 @@
|
||||
/* eslint-disable @typescript-eslint/no-empty-interface */
|
||||
|
||||
import Decimal from 'decimal.js-light'
|
||||
|
||||
expect.extend({
|
||||
@ -24,8 +26,8 @@ interface CustomMatchers<R = unknown> {
|
||||
declare global {
|
||||
// eslint-disable-next-line @typescript-eslint/no-namespace
|
||||
namespace jest {
|
||||
type Expect = CustomMatchers
|
||||
type Matchers<R> = CustomMatchers<R>
|
||||
type InverseAsymmetricMatchers = CustomMatchers
|
||||
interface Expect extends CustomMatchers {}
|
||||
interface Matchers<R> extends CustomMatchers<R> {}
|
||||
interface InverseAsymmetricMatchers extends CustomMatchers {}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user