-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix warnings * imporove desktop imports * improve landing imports * update desktop packages * update landing packages * setup eslint on desktop * improve pre build * feat: allow import svgs * refactor: move svg to icons folder * simplify naming * format all files * update funding * fix eslint warnings * organize imports * organize imports * simplify cli * spelling * add extensions recommendation * add i18n ally * fix translations * remove unused file * refactor * refactor * feat: namespace translation * improve localization, add namespaces * fix translation * fix translation * copy locales to out dir * add chainese * add fs extra * refactor * improve translation * organize config * refactor * refactor * revert tauri version * update readme * simplify tauri config * move locales to desktop folder * rename wav files * refactor * refactor * format landing files * refactor
- Loading branch information
1 parent
13f5a67
commit f49021c
Showing
123 changed files
with
2,837 additions
and
7,036 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
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,11 @@ | ||
{ | ||
"recommendations": [ | ||
"tauri-apps.tauri-vscode", // Tauri is a framework for building lightweight, secure applications with web technologies | ||
"rust-lang.rust-analyzer", // Provides Rust language support | ||
"editorconfig.editorconfig", // EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs | ||
"bradlc.vscode-tailwindcss", // Provides Tailwind CSS IntelliSense | ||
"dbaeumer.vscode-eslint", // Integrates ESLint JavaScript into VS Code | ||
"esbenp.prettier-vscode", // Code formatter using prettier, | ||
"lokalise.i18n-ally" // i18n-ally is an all-in-one i18n (internationalization) extension for VS Code | ||
] | ||
} |
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,14 +1,29 @@ | ||
{ | ||
"[rust]": { | ||
"editor.defaultFormatter": "rust-lang.rust-analyzer" | ||
// General | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "always", | ||
}, | ||
"files.eol": "\n", | ||
|
||
// Rust analyzer | ||
"rust-analyzer.checkOnSave": true, | ||
"rust-analyzer.check.command": "clippy", | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
// "source.organizeImports": "explicit", | ||
// "source.fixAll": "explicit" | ||
"[rust]": { | ||
"editor.defaultFormatter": "rust-lang.rust-analyzer" | ||
}, | ||
|
||
// Formatting | ||
"prettier.configPath": ".prettierrc.json", | ||
"files.eol": "\n" | ||
|
||
// i18n | ||
"i18n-ally.enabledParsers": ["ts", "json"], | ||
"i18n-ally.sortKeys": true, | ||
"i18n-ally.namespace": true, | ||
"i18n-ally.sourceLanguage": "en", | ||
"i18n-ally.enabledFrameworks": ["react", "svelte"], | ||
"i18n-ally.keystyle": "flat", | ||
"i18n-ally.translate.engines": ["google",], | ||
"i18n-ally.localesPaths": ["desktop/src-tauri/locales"], | ||
"i18n-ally.pathMatcher": "{locale}/{namespace}.json", | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Oops, something went wrong.