summaryrefslogtreecommitdiff
path: root/doc/data/messages/i/implicit-str-concat/details.rst
blob: c1e1361834803904d187c0fc076e488fe74ea4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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