Skip to content

Commit 09d7815

Browse files
authored
Merge pull request #1 from Dharin-shah/opentelemetry
feat: opentelemetry plugin
2 parents a274ed5 + 6292b4b commit 09d7815

25 files changed

+15469
-0
lines changed

.eslintrc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const appiumConfig = require('eslint-config-appium');
2+
Object.assign(appiumConfig.parserOptions, {
3+
babelOptions: {
4+
plugins: [
5+
'@babel/plugin-proposal-class-properties'
6+
]
7+
}
8+
});
9+
10+
module.exports = Object.assign({}, appiumConfig, {
11+
root: true,
12+
ignorePatterns: ['node_modules', 'packages/*/node_modules', 'packages/*/build']
13+
});

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.irb-history
2+
*.swp
3+
.DS_Store
4+
node_modules
5+
*.sublime-*
6+
*.iml
7+
*.autosave
8+
.idea/
9+
*.log
10+
*.t
11+
.*~
12+
*~
13+
build/
14+
.idea
15+
*DerivedData
16+
.eslintcache
17+
local_appium_home

lerna.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"packages": [
3+
"packages/*"
4+
],
5+
"version": "independent"
6+
}
7+

0 commit comments

Comments
 (0)