summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/data/messages/i/implicit-str-concat/details.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/data/messages/i/implicit-str-concat/details.rst b/doc/data/messages/i/implicit-str-concat/details.rst
new file mode 100644
index 000000000..c1e136183
--- /dev/null
+++ b/doc/data/messages/i/implicit-str-concat/details.rst
@@ -0,0 +1,15 @@
+By default, detection of implicit string concatenation of line jumps is disabled.
+Hence the following code will not trigger this rule:
+Hence the following code will not trigger this rule:
+
+.. code-block:: python
+
+ SEQ = ('a', 'b'
+ 'c')
+
+In order to detect this case, you must enable `check-str-concat-over-line-jumps`:
+
+.. code-block:: toml
+
+ [STRING_CONSTANT]
+ check-str-concat-over-line-jumps = yes