-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add dprint to project * dprint formatting, part 1 * dprint formatting, part 2 * remove prettier
- Loading branch information
Showing
47 changed files
with
1,338 additions
and
1,509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"lineWidth": 999, | ||
"typescript": { | ||
"indentWidth": 2, | ||
"quoteStyle": "preferDouble", | ||
"newLineKind": "auto", | ||
"nextControlFlowPosition": "maintain", | ||
"module.sortImportDeclarations": "maintain" | ||
}, | ||
"excludes": [ | ||
"**/node_modules", | ||
"**/yarn.lock", | ||
"**/*.js", | ||
"src/locales/data.ts", | ||
"components.d.ts", | ||
".eslintrc.cjs" | ||
], | ||
"plugins": [ | ||
"https://plugins.dprint.dev/typescript-0.88.10.wasm" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
const constants = { | ||
ongoingMatchesRefreshInterval: 30000, | ||
queueDataRefreshInterval: 10000 | ||
queueDataRefreshInterval: 10000, | ||
}; | ||
export default constants; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
export enum EAdminRouteName { | ||
LIVE_QUEUE_DATA = "Admin - Live Queue Data", | ||
BANNED_PLAYERS = "Admin - Banned Players", | ||
SMURF_CHECKER = "Admin - Smurf Checker", | ||
GLOBAL_MUTE = "Admin - Global Mute", | ||
LOUNGE_MUTE = "Admin - Lounge Mute", | ||
VIEW_GAME_CHAT = "Admin - View Game Chat", | ||
PROXY_SETTINGS = "Admin - Proxy Settings", | ||
NEWS = "Admin - News", | ||
LOADING_SCREEN_TIPS = "Admin - Loading Screen Tips", | ||
MESSAGE_OF_THE_DAY = "Admin - Message Of The Day", | ||
ASSIGN_PORTRAITS = "Admin - Assign Portraits", | ||
MANAGE_PORTRAITS = "Admin - Manage Portraits", | ||
MANAGE_ALIBABA_FILES = "Admin - Manage Alibaba Files", | ||
MANAGE_S3_FILES = "Admin - Manage S3 Files", | ||
MANAGE_MAPS = "Admin - Manage Maps", | ||
MANAGE_TOURNAMENTS = "Admin - Manage Tournaments", | ||
MANAGE_PERMISSIONS = "Admin - Manage Permissions", | ||
VIEW_SERVER_LOGS = "Admin - View Server Logs", | ||
SERVER_LOG = "Admin - Server Log", | ||
LIVE_QUEUE_DATA = "Admin - Live Queue Data", | ||
BANNED_PLAYERS = "Admin - Banned Players", | ||
SMURF_CHECKER = "Admin - Smurf Checker", | ||
GLOBAL_MUTE = "Admin - Global Mute", | ||
LOUNGE_MUTE = "Admin - Lounge Mute", | ||
VIEW_GAME_CHAT = "Admin - View Game Chat", | ||
PROXY_SETTINGS = "Admin - Proxy Settings", | ||
NEWS = "Admin - News", | ||
LOADING_SCREEN_TIPS = "Admin - Loading Screen Tips", | ||
MESSAGE_OF_THE_DAY = "Admin - Message Of The Day", | ||
ASSIGN_PORTRAITS = "Admin - Assign Portraits", | ||
MANAGE_PORTRAITS = "Admin - Manage Portraits", | ||
MANAGE_ALIBABA_FILES = "Admin - Manage Alibaba Files", | ||
MANAGE_S3_FILES = "Admin - Manage S3 Files", | ||
MANAGE_MAPS = "Admin - Manage Maps", | ||
MANAGE_TOURNAMENTS = "Admin - Manage Tournaments", | ||
MANAGE_PERMISSIONS = "Admin - Manage Permissions", | ||
VIEW_SERVER_LOGS = "Admin - View Server Logs", | ||
SERVER_LOG = "Admin - Server Log", | ||
} | ||
|
||
export enum EStatisticsRouteName { | ||
PLAYER_ACTIVITY = "Statistics - Player Activity", | ||
MMR = "Statistics - MMR", | ||
WINRATES = "Statistics - Winrates", | ||
HEROES = "Statistics - Heroes", | ||
PLAYER_ACTIVITY = "Statistics - Player Activity", | ||
MMR = "Statistics - MMR", | ||
WINRATES = "Statistics - Winrates", | ||
HEROES = "Statistics - Heroes", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.