mirror of
https://github.com/winapps-org/winapps.git
synced 2025-06-02 13:17:19 +02:00
chore: run pre-commit once
This commit is contained in:
parent
01cec96cfa
commit
5b95c9b41e
4
.github/workflows/rust-check.yml
vendored
4
.github/workflows/rust-check.yml
vendored
@ -5,14 +5,14 @@ on:
|
||||
branches: [ "rewrite" ]
|
||||
pull_request:
|
||||
branches: [ "rewrite" ]
|
||||
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
format:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: mirlahiji/rust-action@master
|
||||
|
4
.github/workflows/rust-clippy.yml
vendored
4
.github/workflows/rust-clippy.yml
vendored
@ -22,11 +22,11 @@ jobs:
|
||||
rust-clippy-analyze:
|
||||
name: Run rust-clippy analyzing
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,10 +1,10 @@
|
||||
# Generated files
|
||||
target/
|
||||
|
||||
# The library shouldn't decide about the exact versions of
|
||||
# The library shouldn't decide about the exact versions of
|
||||
# its dependencies, but let the downstream crate decide.
|
||||
Cargo.lock
|
||||
|
||||
# We don't want to commit IDE configuration files.
|
||||
.idea/
|
||||
.vscode/
|
||||
.vscode/
|
||||
|
@ -131,4 +131,3 @@ For answers to common questions about this code of conduct, see the FAQ at
|
||||
[Mozilla CoC]: https://github.com/mozilla/diversity
|
||||
[FAQ]: https://www.contributor-covenant.org/faq
|
||||
[translations]: https://www.contributor-covenant.org/translations
|
||||
|
||||
|
@ -3,4 +3,4 @@
|
||||
Thank you for contributing to winapps! Before you can contribute, we ask some things of you:
|
||||
|
||||
- Please follow our Code of Conduct, the Contributor Covenant. You can find a copy in this repository or under https://www.contributor-covenant.org/
|
||||
- All Contributors have to sign [a CLA](https://gist.github.com/oskardotglobal/35f0a72eb45fcc7087e535561383dbc5) for legal reasons. When opening a PR, @cla-assitant will prompt you and guide you through the process. However, if you contribute on behalf of a legal entity, we ask of you to sign [a different CLA](https://gist.github.com/oskardotglobal/75a8cc056e56a439fa6a1551129ae47f). In that case, please contact us.
|
||||
- All Contributors have to sign [a CLA](https://gist.github.com/oskardotglobal/35f0a72eb45fcc7087e535561383dbc5) for legal reasons. When opening a PR, @cla-assitant will prompt you and guide you through the process. However, if you contribute on behalf of a legal entity, we ask of you to sign [a different CLA](https://gist.github.com/oskardotglobal/75a8cc056e56a439fa6a1551129ae47f). In that case, please contact us.
|
||||
|
@ -3,4 +3,4 @@ members = [
|
||||
"winapps",
|
||||
"winapps-cli",
|
||||
"winapps-gui",
|
||||
]
|
||||
]
|
||||
|
@ -3,4 +3,4 @@
|
||||
[](https://github.com/winapps-org/winapps/actions/workflows/rust-clippy.yml)
|
||||
[](https://github.com/winapps-org/winapps/actions/workflows/rust-check.yml)
|
||||
|
||||
The winapps rewrite project is a whole rewrite of the legacy winapps in rust. Its goal is to simplify the installation and provide a cleaner codebase.
|
||||
The winapps rewrite project is a whole rewrite of the legacy winapps in rust. Its goal is to simplify the installation and provide a cleaner codebase.
|
||||
|
@ -24,8 +24,9 @@ fn main() {
|
||||
println!("Connecting to remote");
|
||||
}
|
||||
Some((_, _)) => {
|
||||
cli.about("Command not found try existing ones!")
|
||||
.print_help();
|
||||
cli.about("Command not found, try existing ones!")
|
||||
.print_help()
|
||||
.expect("Couldn't print help");
|
||||
}
|
||||
_ => unreachable!(),
|
||||
}
|
||||
|
@ -6,4 +6,4 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
winapps = { path = "../winapps" }
|
||||
winapps = { path = "../winapps" }
|
||||
|
Loading…
x
Reference in New Issue
Block a user