Skip to content

Commit 758faf8

Browse files
convert to webrtc
1 parent 6ea4dba commit 758faf8

Some content is hidden

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

73 files changed

+4536
-34872
lines changed

.eslintrc.json

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

.gitignore

Lines changed: 14 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,21 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
1+
# build output
2+
dist/
23

34
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
5+
node_modules/
76

8-
# testing
9-
/coverage
10-
11-
# production
12-
/build
7+
# logs
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
pnpm-debug.log*
1312

14-
# packaging
15-
*.zip
16-
*.tar.gz
17-
*.tar
18-
*.tgz
19-
*.bla
13+
# environment variables
14+
.env
15+
.env.production
2016

21-
# misc
17+
# macOS-specific files
2218
.DS_Store
23-
.env
24-
.env.local
25-
.env.development.local
26-
.env.test.local
27-
.env.production.local
2819

29-
npm-debug.log*
30-
yarn-debug.log*
31-
yarn-error.log*
20+
# jetbrains setting folder
21+
.idea/

.prettierrc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
{
22
"tabWidth": 2,
33
"useTabs": false,
4-
"singleQuote": true
4+
"singleQuote": false,
5+
"trailingComma": "all",
6+
"semi": true,
7+
"quoteProps": "as-needed",
8+
"arrowParens": "always",
9+
"endOfLine": "auto",
10+
"bracketSpacing": true
511
}

0 commit comments

Comments
 (0)