This commit is contained in:
Tom Hu
2021-01-02 19:01:39 -05:00
parent be4e2a5e02
commit 4dcb7122e5
4 changed files with 283 additions and 9 deletions

19
.eslintrc.json Normal file
View File

@@ -0,0 +1,19 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"google"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12
},
"plugins": [
"@typescript-eslint"
],
"rules": {
}
}