-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
run_make_support: skip rustfmt for lib.rs #127964
Conversation
pub use external_deps::{c_build, cc, clang, htmldocck, llvm, python, rustc, rustdoc}; | ||
|
||
// These rely on external dependencies. | ||
#[rustfmt::skip] | ||
pub use c_build::build_native_static_lib; | ||
pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc}; | ||
pub use clang::{clang, Clang}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are more comments and blank lines below here. All of the comments apply to single lines, so no comments will end up on incorrect places. But ordering will be changed and blank lines removed. Given that this file mostly contains use
declaration, it might just be better to add a single #![rustfmt::skip]
at the top to inhibit formatting of the entire file. This was done for a few files in #126776.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, just slapped a #![cfg_attr(rustfmt, rustfmt::skip)]
to the lib.rs file.
47cb497
to
36ebf7a
Compare
@bors r+ |
@bors rollup |
#[rustfmt::skip]
barriers to comments for use groups…thercote run_make_support: skip rustfmt for lib.rs To avoid them getting reordered once rust-lang#125443 goes through. r? `@nnethercote` (since you were working on this)
…thercote run_make_support: skip rustfmt for lib.rs To avoid them getting reordered once rust-lang#125443 goes through. r? ```@nnethercote``` (since you were working on this)
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#127463 ( use precompiled rustdoc with CI rustc) - rust-lang#127779 (Add a hook for `should_codegen_locally`) - rust-lang#127843 (unix: document unsafety for std `sig{action,altstack}`) - rust-lang#127873 (kmc-solid: `#![forbid(unsafe_op_in_unsafe_fn)]`) - rust-lang#127917 (match lowering: Split `finalize_or_candidate` into more coherent methods) - rust-lang#127964 (run_make_support: skip rustfmt for lib.rs) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#127964 - jieyouxu:rmake-rustfmt-skip, r=nnethercote run_make_support: skip rustfmt for lib.rs To avoid them getting reordered once rust-lang#125443 goes through. r? ``@nnethercote`` (since you were working on this)
To avoid them getting reordered once #125443 goes through.
r? @nnethercote (since you were working on this)