Skip to content

Commit 8b17f09

Browse files
authoredFeb 6, 2024
feat: add first part of the open telemetry integration to the runtime (#232)
* feat: add open telemetry integration to runtime * chore: copy with the force * chore: fix e2e tests * chore: pr feedback from simon
1 parent 101aea6 commit 8b17f09

17 files changed

+1323
-141
lines changed
 

‎.eslintrc.cjs

+10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = {
1313
'n/prefer-global/process': 'off',
1414
'unicorn/numeric-separators-style': 'off',
1515
'unicorn/filename-case': ['error', { case: 'kebabCase' }],
16+
'import/no-extraneous-dependencies': 'off',
1617
'import/no-namespace': 'off',
1718
'import/extensions': 'off',
1819
'max-depth': 'off',
@@ -70,5 +71,14 @@ module.exports = {
7071
],
7172
},
7273
},
74+
{
75+
files: ['src/build/templates/**/*'],
76+
rules: {
77+
'n/no-missing-import': 'off',
78+
'import/no-unresolved': 'off',
79+
'import/no-anonymous-default-export': 'off',
80+
'func-names': 'off',
81+
},
82+
},
7383
],
7484
}

0 commit comments

Comments
 (0)
Please sign in to comment.