forked from chatgpt-web-dev/chatgpt-web
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: clean unused code and improve lint rule (chatgpt-web-dev#541)
* chore: lint fix and clean unused code Signed-off-by: Bob Du <[email protected]> * chore: improve lint fix Signed-off-by: Bob Du <[email protected]> * chore: improve lint fix Signed-off-by: Bob Du <[email protected]> --------- Signed-off-by: Bob Du <[email protected]>
- Loading branch information
Showing
20 changed files
with
61 additions
and
177 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 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 |
---|---|---|
|
@@ -30,4 +30,4 @@ coverage | |
|
||
# Environment variables files | ||
/service/.env | ||
/docker-compose/nginx/html | ||
/docker-compose/nginx/html |
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
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,8 +1,8 @@ | ||
/// <reference types="vite/client" /> | ||
|
||
interface ImportMetaEnv { | ||
readonly VITE_GLOB_API_URL: string; | ||
readonly VITE_APP_API_BASE_URL: string; | ||
readonly VITE_GLOB_OPEN_LONG_REPLY: string; | ||
readonly VITE_GLOB_APP_PWA: string; | ||
readonly VITE_GLOB_API_URL: string | ||
readonly VITE_APP_API_BASE_URL: string | ||
readonly VITE_GLOB_OPEN_LONG_REPLY: string | ||
readonly VITE_GLOB_APP_PWA: string | ||
} |
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,6 +1,6 @@ | ||
interface Window { | ||
$loadingBar?: import('naive-ui').LoadingBarProviderInst; | ||
$dialog?: import('naive-ui').DialogProviderInst; | ||
$message?: import('naive-ui').MessageProviderInst; | ||
$notification?: import('naive-ui').NotificationProviderInst; | ||
$loadingBar?: import('naive-ui').LoadingBarProviderInst | ||
$dialog?: import('naive-ui').DialogProviderInst | ||
$message?: import('naive-ui').MessageProviderInst | ||
$notification?: import('naive-ui').NotificationProviderInst | ||
} |
Oops, something went wrong.