File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/runtime/src/helpers Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ module.exports = {
48
48
'n/no-unsupported-features/es-syntax' : 'off' ,
49
49
'@typescript-eslint/no-extra-semi' : 'off' ,
50
50
'n/no-missing-import' : 'off' ,
51
+ // https://github.com/typescript-eslint/typescript-eslint/issues/2483
52
+ 'no-shadow' : 'off' ,
53
+ '@typescript-eslint/no-shadow' : 'error' ,
51
54
} ,
52
55
} ,
53
56
{
Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ export interface RoutesManifest {
52
52
rewrites : Rewrites
53
53
}
54
54
55
- // I have no idea what eslint is up to here but it gives an error
56
- // eslint-disable-next-line no-shadow
57
55
export const enum ApiRouteType {
58
56
SCHEDULED = 'experimental-scheduled' ,
59
57
BACKGROUND = 'experimental-background' ,
You can’t perform that action at this time.
0 commit comments