summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-04-06 09:55:52 +0900
committerYuki Okushi <jtitor@2k36.org>2021-04-06 09:55:52 +0900
commit3a8521a7a1cf9aa9d401a0bb581b5d88917d3e7a (patch)
treef6835d29da204e34492b0b4e1c48d67f137be839
parent714f302b929e1d1f8a0629bb5f36ba7ff86cfb1d (diff)
downloadrust-libc-3a8521a7a1cf9aa9d401a0bb581b5d88917d3e7a.tar.gz
Relax the line length limit to 100
-rw-r--r--ci/style.rs6
-rw-r--r--rustfmt.toml4
2 files changed, 4 insertions, 6 deletions
diff --git a/ci/style.rs b/ci/style.rs
index 813102bcac..b7e5d8ee8f 100644
--- a/ci/style.rs
+++ b/ci/style.rs
@@ -16,7 +16,7 @@
//!
//! * No trailing whitespace
//! * No tabs
-//! * 80-character lines
+//! * 100-character lines
//! * Specific module layout:
//! 1. use directives
//! 2. typedefs
@@ -122,8 +122,8 @@ fn check_style(file: &str, path: &Path, err: &mut Errors) {
if line.contains("\t") {
err.error(path, i, "tab character");
}
- if line.len() > 80 && !(line.contains("https://") || line.contains("http://")) {
- err.error(path, i, "line longer than 80 chars");
+ if line.len() > 100 && !(line.contains("https://") || line.contains("http://")) {
+ err.error(path, i, "line longer than 100 chars");
}
if line.contains("#[cfg(") && line.contains(']') && !line.contains(" if ")
&& !(line.contains("target_endian") ||
diff --git a/rustfmt.toml b/rustfmt.toml
index 7ecc610f33..dc85c99467 100644
--- a/rustfmt.toml
+++ b/rustfmt.toml
@@ -1,3 +1 @@
-max_width = 79
-comment_width = 79
-error_on_line_overflow = true \ No newline at end of file
+error_on_line_overflow = true