move client from separate repo

This commit is contained in:
Aiden McClelland
2021-06-15 16:42:47 -06:00
committed by Aiden McClelland
parent d2f542a8f3
commit 9ad59a4d1a
21 changed files with 4370 additions and 0 deletions

47
client/tslint.json Normal file
View File

@@ -0,0 +1,47 @@
{
"rules": {
"no-unused-variable": true,
"no-unused-expression": true,
"space-before-function-paren": true,
"semicolon": [
true,
"never"
],
"no-trailing-whitespace": true,
"indent": [
true,
"spaces",
2
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock",
"check-postbrace"
],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "never"
},
"singleline": "never"
}
],
"quotemark": [
true,
"single"
]
}
}