diff options
| author | Douglas Campos <qmx@qmx.me> | 2018-10-19 19:26:43 +0000 |
|---|---|---|
| committer | Douglas Campos <qmx@qmx.me> | 2018-10-19 19:26:43 +0000 |
| commit | cf90f72f55240686be268e9f6929e9bbec678616 (patch) | |
| tree | 17dba58461e4c5b116cea4db3c8c5d3b9c80cfb2 | |
| parent | 74ff7dcb1388e60a613cd6050bcd372a3cc4998b (diff) | |
| download | rust-cf90f72f55240686be268e9f6929e9bbec678616.tar.gz rust-cf90f72f55240686be268e9f6929e9bbec678616.zip | |
ignore target folders
when you try to edit a crate inside the compiler tree using rls, it generates it's assets under target/rls, then tidy is trying to validate line lenghts for C headers, etc
| -rw-r--r-- | src/tools/tidy/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/tidy/src/lib.rs b/src/tools/tidy/src/lib.rs index c4bd0bbd03c..c5f5896d286 100644 --- a/src/tools/tidy/src/lib.rs +++ b/src/tools/tidy/src/lib.rs @@ -78,6 +78,7 @@ fn filter_dirs(path: &Path) -> bool { "src/tools/lldb", "src/target", "src/stdsimd", + "target", ]; skip.iter().any(|p| path.ends_with(p)) } |
