Skip to content

Commit

Permalink
chore: remove rustfmt CI check
Browse files Browse the repository at this point in the history
PSE upstream uses different rustfmt configuration than us, so some files
disagree in formatting
  • Loading branch information
jonathanpwang committed Jul 11, 2023
1 parent 4996423 commit b1b38e3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
- name: Run test
run: cargo test --all -- --nocapture


lint:
name: Lint
runs-on: ubuntu-latest
Expand All @@ -47,8 +46,5 @@ jobs:
with:
cache-on-failure: true

- name: Run fmt
run: cargo fmt --all -- --check

- name: Run clippy
run: cargo clippy --all --all-targets -- -D warnings
4 changes: 1 addition & 3 deletions snark-verifier/src/loader/evm/code.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ pub struct YulCode {

impl YulCode {
pub fn new() -> Self {
YulCode {
runtime: String::new(),
}
YulCode { runtime: String::new() }
}

pub fn code(&self, base_modulus: String, scalar_modulus: String) -> String {
Expand Down

0 comments on commit b1b38e3

Please sign in to comment.