Skip to content

Commit 5e70804

Browse files
Merge pull request #22 from Web3Auth/chore/stash-old-impl
chore: sync codebase from expo sdk for 3.0.0
2 parents 158dc96 + be5a9ae commit 5e70804

File tree

115 files changed

+17545
-18063
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+17545
-18063
lines changed

.circleci/config.yml

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

.editorconfig

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

.eslintignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
#production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
examples/
23+
types/
24+
dist/

.eslintrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"root": true,
3+
"extends": ["@toruslabs/eslint-config-typescript"],
4+
"parser": "@typescript-eslint/parser",
5+
"ignorePatterns": ["*.config.js", "example/*"],
6+
"parserOptions": {
7+
"sourceType": "module",
8+
"ecmaVersion": 11,
9+
"project": "./tsconfig.json"
10+
},
11+
"rules": {
12+
"camelcase": 0
13+
}
14+
}

.gitattributes

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

0 commit comments

Comments
 (0)