Skip to content

Commit

Permalink
style: member-delimiter-style
Browse files Browse the repository at this point in the history
  • Loading branch information
kirklin committed Nov 6, 2023
1 parent 8e33185 commit 3e830c7
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 42 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@iconify-json/mdi": "^1.1.55",
"@iconify-json/tabler": "^1.1.96",
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@kirklin/eslint-config": "^1.0.0",
"@kirklin/eslint-config": "^1.0.1",
"@types/node": "^20.8.10",
"@types/nprogress": "^0.2.2",
"@unocss/eslint-config": "^0.57.2",
Expand Down
49 changes: 13 additions & 36 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/composables/langugage.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import ISO6391 from "iso-639-1";

export const languagesNameList: {
code: string
nativeName: string
name: string
code: string;
nativeName: string;
name: string;
}[] = ISO6391.getAllCodes().map(code => ({
code,
nativeName: ISO6391.getNativeName(code),
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/Navbar/components/ThemeChange/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export declare type CustomTheme = "cupcake" | "bumblebee" | "emerald" | "corpora
"lofi" | "pastel" | "fantasy" | "wireframe" | "black" | "luxury" | "dracula" | "cmyk" |
"autumn" | "business" | "acid" | "lemonade" | "night" | "coffee" | "winter" | BasicColorSchema;
export interface ThemeList {
name: string
id: CustomTheme
name: string;
id: CustomTheme;
}

0 comments on commit 3e830c7

Please sign in to comment.