-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66ed457
commit 56d86cc
Showing
27 changed files
with
802 additions
and
800 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
# Build outputs | ||
target | ||
build | ||
dist | ||
out | ||
|
||
# Dependencies | ||
node_modules | ||
|
||
# Why would I lint these? | ||
*.md | ||
LICENSE | ||
|
||
# Image files | ||
*.png | ||
*.svg | ||
*.gif | ||
*.jpg | ||
*.jpeg | ||
*.jfif | ||
|
||
# Lock files | ||
*.lock | ||
pnpm-lock.yaml | ||
package-lock.json | ||
|
||
# Git | ||
.git | ||
|
||
# Rust | ||
*.rs | ||
# Build outputs | ||
target | ||
build | ||
dist | ||
out | ||
|
||
# Dependencies | ||
node_modules | ||
|
||
# Why would I lint these? | ||
*.md | ||
LICENSE | ||
|
||
# Image files | ||
*.png | ||
*.svg | ||
*.gif | ||
*.jpg | ||
*.jpeg | ||
*.jfif | ||
|
||
# Lock files | ||
*.lock | ||
pnpm-lock.yaml | ||
package-lock.json | ||
|
||
# Git | ||
.git | ||
|
||
# Rust | ||
*.rs |
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,30 +1,30 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
testing | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
# Tauri generated files | ||
target | ||
wormhole.AppDir | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
testing | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
# Tauri generated files | ||
target | ||
wormhole.AppDir |
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,31 +1,31 @@ | ||
# Build outputs | ||
target | ||
build | ||
dist | ||
out | ||
|
||
# Dependencies | ||
node_modules | ||
|
||
# Why would I lint these? | ||
*.md | ||
LICENSE | ||
|
||
# Image files | ||
*.png | ||
*.svg | ||
*.gif | ||
*.jpg | ||
*.jpeg | ||
*.jfif | ||
|
||
# Lock files | ||
*.lock | ||
pnpm-lock.yaml | ||
package-lock.json | ||
|
||
# Git | ||
.git | ||
|
||
# Rust | ||
*.rs | ||
# Build outputs | ||
target | ||
build | ||
dist | ||
out | ||
|
||
# Dependencies | ||
node_modules | ||
|
||
# Why would I lint these? | ||
*.md | ||
LICENSE | ||
|
||
# Image files | ||
*.png | ||
*.svg | ||
*.gif | ||
*.jpg | ||
*.jpeg | ||
*.jfif | ||
|
||
# Lock files | ||
*.lock | ||
pnpm-lock.yaml | ||
package-lock.json | ||
|
||
# Git | ||
.git | ||
|
||
# Rust | ||
*.rs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[workspace] | ||
members = [ | ||
"cli", | ||
"common", | ||
"gui" | ||
] | ||
[workspace] | ||
members = [ | ||
"cli", | ||
"common", | ||
"gui" | ||
] |
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,13 +1,13 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
| Version | Supported | | ||
|---------|--------------------| | ||
| < 1.0 | :white_check_mark: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
To report a vulnerability, please head to the issues section | ||
and create one describing the issue. We will try to fix it | ||
as soon as possible. Thanks! | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
| Version | Supported | | ||
|---------|--------------------| | ||
| < 1.0 | :white_check_mark: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
To report a vulnerability, please head to the issues section | ||
and create one describing the issue. We will try to fix it | ||
as soon as possible. Thanks! |
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,3 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import re | ||
import argparse | ||
|
||
|
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 +1 @@ | ||
pub mod mods; | ||
pub mod mods; |
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 +1 @@ | ||
pub mod install; | ||
pub mod install; |
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.