Skip to content

Commit 9ed1313

Browse files
committed
fix linting
1 parent 3bf99d5 commit 9ed1313

24 files changed

+6233
-92
lines changed

packages/logger/.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"parserOptions": {
1313
"ecmaVersion": 2020,
1414
"sourceType": "module",
15-
"project": "./tsconfig.json"
15+
"project": "./tsconfig-dev.json"
1616
},
1717
"extends": [
1818
"plugin:import/typescript"

packages/logger/examples/utils/formatters/CustomLogFormatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { LogFormatter } from '../../../src/formatter';
2-
import { LogAttributes, UnformattedAttributes } from '../../../types';
2+
import { LogAttributes, UnformattedAttributes } from '../../../src/types';
33

44
type MyCompanyLog = LogAttributes;
55

packages/logger/examples/utils/formatters/MyCompanyLogFormatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { LogFormatter } from '../../../src/formatter';
2-
import { LogAttributes, UnformattedAttributes } from '../../../types';
2+
import { LogAttributes, UnformattedAttributes } from '../../../src/types';
33

44
type MyCompanyLog = LogAttributes;
55

packages/logger/jest.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ module.exports = {
2323
'testEnvironment': 'node',
2424
'coveragePathIgnorePatterns': [
2525
'/node_modules/',
26+
'/types/',
2627
],
2728
'coverageThreshold': {
2829
'global': {

0 commit comments

Comments
 (0)