We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae56bdb commit d249301Copy full SHA for d249301
eslint.config.mjs
@@ -68,6 +68,12 @@ export default defineConfig([
68
},
69
70
rules: {
71
+ 'no-restricted-imports': [
72
+ 'error',
73
+ {
74
+ patterns: ['src/*'],
75
+ },
76
+ ],
77
'@typescript-eslint/no-empty-interface': [
78
'error',
79
{
src/utils/index.ts
@@ -18,7 +18,7 @@ import { EventEmitter } from 'events';
18
import * as semver from 'semver';
19
20
import { SpanKind, TelemetryAttributes } from '../enums';
21
-import { DatabaseType } from 'src/types';
+import { DatabaseType } from '../types';
22
23
export const errorObject: { [index: string]: any } = { value: null };
24
0 commit comments