Skip to content
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

Add CSS tidy check #74368

Merged
merged 3 commits into from
Jul 18, 2020
Merged

Add CSS tidy check #74368

merged 3 commits into from
Jul 18, 2020

Conversation

GuillaumeGomez
Copy link
Member

@rust-highfive
Copy link
Collaborator

Some changes occurred in HTML/CSS/JS.

cc @GuillaumeGomez

Some changes occurred in HTML/CSS themes.

cc @GuillaumeGomez

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 15, 2020
@GuillaumeGomez
Copy link
Member Author

Those messages are getting better and better. XD

Copy link
Member

@Mark-Simulacrum Mark-Simulacrum left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r=me with nit fixed, though I'd love to see this squashed into two commits: tidy changes and the effects of fixing those.

@@ -161,6 +174,10 @@ pub fn check(path: &Path, bad: &mut bool) {
// currently), just the long error code explanation ones.
return;
}
if filename.ends_with(".css") && !is_in(file, "librustdoc") {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be is_style_file perhaps?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@@ -136,15 +137,28 @@ macro_rules! suppressible_tidy_err {
};
}

pub fn is_in(full_path: &Path, folder_to_find: &str) -> bool {
if let Some(parent) = full_path.parent() {
if parent.file_name().map(|f| f.to_string_lossy() == folder_to_find).unwrap_or(false) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if parent.file_name().map(|f| f.to_string_lossy() == folder_to_find).unwrap_or(false) {
if parent.file_name().map_or_else(false, |f| f.to_string_lossy() == folder_to_find) {

Do we need to_string_lossy?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need a conversion to string so I took the code from below and didn't change it much.

@@ -136,15 +137,28 @@ macro_rules! suppressible_tidy_err {
};
}

pub fn is_in(full_path: &Path, folder_to_find: &str) -> bool {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we stop iterating on the rust project directory?

let mut full_path = full_path;
while let Some(parent) = full_path.parent() {
    if let Some(f) = parent.file_name() {
        if f == folder_to_find {
            return true;
        } else if f == RUST_DIR {
            return false;
        } 
    }
    full_path = parent;
}
false

Just an example, it could be shorten.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is RUST_DIR in this case?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where rust repository is, I don't know what should it be, is there something like this? I think yours is simpler but it may hit something else created by the user.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, it's very unlikely but I can add a check on the parent as well (it might actually be a good idea).

@GuillaumeGomez
Copy link
Member Author

@Mark-Simulacrum I cherry-picked the first commit from another PR of mine, this is why there are two commits of tidy fixes. Also github seems kinda down because I force-pushed with only 3 commits a while ago and they still don't show up...

@Mark-Simulacrum Mark-Simulacrum added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 15, 2020
@GuillaumeGomez GuillaumeGomez force-pushed the css-tidy-check branch 2 times, most recently from 24f0c68 to 63ffa13 Compare July 16, 2020 14:19
@GuillaumeGomez
Copy link
Member Author

Updated!

@Mark-Simulacrum
Copy link
Member

@bors r+

@bors
Copy link
Contributor

bors commented Jul 16, 2020

📌 Commit 63ffa13 has been approved by Mark-Simulacrum

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Jul 16, 2020
Manishearth added a commit to Manishearth/rust that referenced this pull request Jul 16, 2020
Manishearth added a commit to Manishearth/rust that referenced this pull request Jul 16, 2020
@Manishearth
Copy link
Member

This failed its own check #74412 (comment)

Manishearth added a commit to Manishearth/rust that referenced this pull request Jul 17, 2020
@bors
Copy link
Contributor

bors commented Jul 17, 2020

☔ The latest upstream changes (presumably #74422) made this pull request unmergeable. Please resolve the merge conflicts.

@bors bors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jul 17, 2020
@Manishearth
Copy link
Member

From doing rollups I'm pretty sure some of the PRs that just landed break this, mind rebasing and making sure the new changes pass tidy?

@bors r-

@GuillaumeGomez
Copy link
Member Author

The ayu improvements I assume.

@GuillaumeGomez
Copy link
Member Author

Rebased.

@GuillaumeGomez
Copy link
Member Author

@bors: r=Mark-Simulacrum

@bors
Copy link
Contributor

bors commented Jul 17, 2020

📌 Commit 83ffd5c has been approved by Mark-Simulacrum

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Jul 17, 2020
Manishearth added a commit to Manishearth/rust that referenced this pull request Jul 17, 2020
bors added a commit to rust-lang-ci/rust that referenced this pull request Jul 17, 2020
…arth

Rollup of 18 pull requests

Successful merges:

 - rust-lang#71670 (Enforce even more the code blocks attributes check through rustdoc)
 - rust-lang#73930 (Make some Option methods const)
 - rust-lang#74009 (Fix MinGW `run-make-fulldeps` tests)
 - rust-lang#74056 (Add Arguments::as_str().)
 - rust-lang#74169 (Stop processing unreachable blocks when solving dataflow)
 - rust-lang#74251 (Teach bootstrap about target files vs target triples)
 - rust-lang#74288 (Fix src/test/run-make/static-pie/test-aslr.rs)
 - rust-lang#74300 (Use intra-doc links in core::iter module)
 - rust-lang#74364 (add lazy normalization regression tests)
 - rust-lang#74368 (Add CSS tidy check)
 - rust-lang#74394 (Remove leftover from emscripten fastcomp support)
 - rust-lang#74411 (Don't assign `()` to `!` MIR locals)
 - rust-lang#74416 (Use an UTF-8 locale for the linker.)
 - rust-lang#74424 (Move hir::Place to librustc_middle/hir)
 - rust-lang#74428 (docs: better demonstrate that None values are skipped as many times a…)
 - rust-lang#74438 (warn about uninitialized multi-variant enums)
 - rust-lang#74440 (Fix Arc::as_ptr docs)
 - rust-lang#74452 (intra-doc links: resolve modules in the type namespace)

Failed merges:

r? @ghost
@bors bors merged commit ef0540b into rust-lang:master Jul 18, 2020
@GuillaumeGomez GuillaumeGomez deleted the css-tidy-check branch July 20, 2020 08:47
@cuviper cuviper added this to the 1.47.0 milestone May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants