Replace Database connection with web server API

This commit is contained in:
Geomitron
2020-05-03 16:36:08 -04:00
parent 0b4e50174d
commit a3271bf164
20 changed files with 190 additions and 293 deletions

View File

@@ -27,7 +27,11 @@
"allowSingleLine": true
}],
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/space-before-function-paren": ["error", "never"],
"@typescript-eslint/space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}],
"@typescript-eslint/no-var-requires": ["off"],
"@typescript-eslint/no-empty-function": ["error", {
"allow": [
@@ -60,8 +64,14 @@
"block-spacing": "error",
"no-trailing-spaces": "error",
"no-whitespace-before-property": "error",
"no-constant-condition": ["error", {
"checkLoops": false
}],
"space-before-blocks": "error",
"spaced-comment": ["error", "always", {
"line": {
"markers": ["/"]
},
"block": {
"balanced": true,
"exceptions": ["*"]