Skip to content

Commit d81acad

Browse files
authored
Add new augmentLogEntry property (#148)
- add `augmentLogEntry` property to logging plugin - update all packages including `@makerx/ts-toolkit` update
1 parent 308a1e6 commit d81acad

File tree

8 files changed

+8562
-7321
lines changed

8 files changed

+8562
-7321
lines changed

.eslintignore

Lines changed: 0 additions & 16 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.eslintrc.cjs

Lines changed: 0 additions & 19 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ node_modules/
4444

4545
# Compiled code
4646
dist/
47-
dist-old/
4847
build/
4948

5049
# Coverage report

eslint.config.mjs

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { FlatCompat } from '@eslint/eslintrc'
2+
import js from '@eslint/js'
3+
import globals from 'globals'
4+
import path from 'node:path'
5+
import { fileURLToPath } from 'node:url'
6+
7+
const __filename = fileURLToPath(import.meta.url)
8+
const __dirname = path.dirname(__filename)
9+
const compat = new FlatCompat({
10+
baseDirectory: __dirname,
11+
recommendedConfig: js.configs.recommended,
12+
allConfig: js.configs.all,
13+
})
14+
15+
export default [
16+
{
17+
ignores: [
18+
'**/.eslintrc.js',
19+
'**/node_modules',
20+
'**/dist',
21+
'**/build',
22+
'**/coverage',
23+
'**/generated/types.d.ts',
24+
'**/generated/types.ts',
25+
'**/.idea',
26+
'**/.vscode',
27+
'**/gql',
28+
],
29+
},
30+
...compat.extends('@makerx/eslint-config'),
31+
{
32+
rules: {
33+
'@typescript-eslint/no-explicit-any': 'off',
34+
},
35+
},
36+
{
37+
languageOptions: {
38+
globals: {
39+
...globals.node,
40+
},
41+
},
42+
},
43+
]

0 commit comments

Comments
 (0)