Skip to content

Commit

Permalink
Merge pull request #90 from y-crdt/new-write
Browse files Browse the repository at this point in the history
New write
  • Loading branch information
SebastianStehle authored Apr 16, 2024
2 parents 2fdc123 + 49e1c41 commit 4d8ae57
Show file tree
Hide file tree
Showing 41 changed files with 2,744 additions and 388 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,6 @@ node_modules

apSettings.Development.json

launchSettings.json
launchSettings.json

.env
1 change: 1 addition & 0 deletions Demo/Client/.env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_WS_URL=wss://localhost:5001/collaboration
7 changes: 7 additions & 0 deletions Demo/Client/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@ module.exports = {
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:prettier/recommended'
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
rules: {
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
Expand Down
8 changes: 8 additions & 0 deletions Demo/Client/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"arrowParens": "always"
}

Loading

0 comments on commit 4d8ae57

Please sign in to comment.