Switched to backend v1.0.0, added eslint and prettier configs

This commit is contained in:
Dmitriy Shishkov 2020-10-10 20:57:11 +05:00
parent 8be9a3c4f6
commit defcd64cba
No known key found for this signature in database
GPG Key ID: D76D70029F55183E
6 changed files with 2509 additions and 560 deletions

2
.eslintignore Normal file
View File

@ -0,0 +1,2 @@
node_modules
dist

14
.eslintrc Normal file
View File

@ -0,0 +1,14 @@
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"no-console": 2,
"prettier/prettier": 2
}
}

View File

@ -1,5 +1,8 @@
{
"tabWidth": 2,
"useTabs": false,
"semi": false
"semi": false,
"trailingComma": "none",
"printWidth": 80,
"singleQuote": true
}

4
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"editor.formatOnPaste": true,
"editor.formatOnSave": true
}

@ -1 +1 @@
Subproject commit ce7939bcac0a515bd5660ecf277f85eace2c0d13
Subproject commit 2bcbc86a56be5e50a3081c6ce0599cb58fa73ee9

3042
yarn.lock

File diff suppressed because it is too large Load Diff