Skip to content

Commit c7fb5f3

Browse files
committed
Add missing lint exemptions
These lint rules were recently fixed to be more correct, and now catch problems in old versions and scoped packages.
1 parent 95859b6 commit c7fb5f3

32 files changed

Lines changed: 73 additions & 2 deletions

File tree

types/auth0-js/v7/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ interface Auth0DelegationToken {
172172

173173
declare const Auth0: Auth0Static;
174174

175+
// eslint-disable-next-line @definitelytyped/no-declare-current-package
175176
declare module "auth0-js" {
176177
export = Auth0;
177178
}

types/bluebird/v1/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -662,6 +662,7 @@ declare namespace Promise {
662662
}
663663
}
664664

665+
// eslint-disable-next-line @definitelytyped/no-declare-current-package
665666
declare module 'bluebird' {
666667
export = Promise;
667668
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"@definitelytyped/no-self-import": "off"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"@definitelytyped/no-self-import": "off"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"@definitelytyped/no-self-import": "off"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"@definitelytyped/no-self-import": "off"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"@definitelytyped/no-self-import": "off"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"@definitelytyped/no-self-import": "off"
4+
}
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"@definitelytyped/no-self-import": "off"
4+
}
5+
}

types/feathersjs__authentication-jwt/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import { Application } from '@feathersjs/feathers';
88
import { Request } from 'express';
9+
// eslint-disable-next-line @definitelytyped/no-self-import
910
import * as self from '@feathersjs/authentication-jwt';
1011

1112
declare const feathersAuthenticationJwt: ((options?: Partial<FeathersAuthenticationJWTOptions>) => () => void) & typeof self;

0 commit comments

Comments
 (0)