Skip to content

Commit 3be2cab

Browse files
committed
Move the SDK to a public repo.
1 parent c3400d6 commit 3be2cab

14 files changed

+14137
-1862
lines changed

Diff for: .eslintrc.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
},
6+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
7+
overrides: [
8+
{
9+
env: {
10+
node: true,
11+
},
12+
files: ['.eslintrc.{js,cjs}'],
13+
parserOptions: {
14+
sourceType: 'script',
15+
},
16+
},
17+
],
18+
parser: '@typescript-eslint/parser',
19+
parserOptions: {
20+
ecmaVersion: 'latest',
21+
sourceType: 'module',
22+
},
23+
plugins: ['@typescript-eslint'],
24+
rules: {
25+
'linebreak-style': ['error', 'unix'],
26+
quotes: ['error', 'single'],
27+
semi: ['error', 'always'],
28+
},
29+
};

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.env.staging
33
/dist
44
/node_modules
5+
.idea/

Diff for: .prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
dist
3+
package.json

Diff for: .prettierrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 120,
3+
"singleQuote": true
4+
}

0 commit comments

Comments
 (0)