Skip to content

Commit 0748f19

Browse files
authored
Merge pull request #43 from eightants/dev
Leaderboard, tiny features, code cleanup, redesign
2 parents e4451d4 + ba43e95 commit 0748f19

File tree

83 files changed

+3934
-2443
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+3934
-2443
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# compiled output
22
dist
3+
server.js
34

45
serviceAccountKey.json
56
.vercel
6-
.now
77
.env.build
88
.env
99

application/.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ indent_style = space
77
indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
10+
quote_type = single
1011

1112
[*.md]
1213
max_line_length = off

application/.eslintrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended"
9+
],
10+
"parser": "@typescript-eslint/parser",
11+
"parserOptions": {
12+
"ecmaVersion": 12,
13+
"sourceType": "module"
14+
},
15+
"plugins": ["@typescript-eslint"],
16+
"rules": {
17+
"@typescript-eslint/ban-types": "off",
18+
"@typescript-eslint/no-empty-function": "off",
19+
"@typescript-eslint/no-explicit-any": "off",
20+
"@typescript-eslint/no-unused-vars": "warn"
21+
}
22+
}

application/angular.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"aot": false,
2626
"assets": [
2727
"src/favicon.ico",
28-
"src/assets"
28+
"src/assets",
29+
"src/favicons"
2930
],
3031
"styles": [
3132
"src/styles.scss",

0 commit comments

Comments
 (0)