summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/comment_width
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/configs/comment_width')
-rw-r--r--src/tools/rustfmt/tests/source/configs/comment_width/above.rs7
-rw-r--r--src/tools/rustfmt/tests/source/configs/comment_width/below.rs7
-rw-r--r--src/tools/rustfmt/tests/source/configs/comment_width/ignore.rs7
3 files changed, 21 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/configs/comment_width/above.rs b/src/tools/rustfmt/tests/source/configs/comment_width/above.rs
new file mode 100644
index 000000000..36187ce0a
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/comment_width/above.rs
@@ -0,0 +1,7 @@
+// rustfmt-comment_width: 40
+// rustfmt-wrap_comments: true
+// Comment width
+
+fn main() {
+ // Lorem ipsum dolor sit amet, consectetur adipiscing elit.
+}
diff --git a/src/tools/rustfmt/tests/source/configs/comment_width/below.rs b/src/tools/rustfmt/tests/source/configs/comment_width/below.rs
new file mode 100644
index 000000000..abbc5930c
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/comment_width/below.rs
@@ -0,0 +1,7 @@
+// rustfmt-comment_width: 80
+// rustfmt-wrap_comments: true
+// Comment width
+
+fn main() {
+ // Lorem ipsum dolor sit amet, consectetur adipiscing elit.
+}
diff --git a/src/tools/rustfmt/tests/source/configs/comment_width/ignore.rs b/src/tools/rustfmt/tests/source/configs/comment_width/ignore.rs
new file mode 100644
index 000000000..c86e71c28
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/configs/comment_width/ignore.rs
@@ -0,0 +1,7 @@
+// rustfmt-comment_width: 40
+// rustfmt-wrap_comments: false
+// Comment width
+
+fn main() {
+ // Lorem ipsum dolor sit amet, consectetur adipiscing elit.
+}