A Flake8 plugin that warns about implicit string literal concatenation (e.g., 'foo' 'bar') and encourages explicit concatenation with '+'. Version 0.6.0 requires Python >=3.10. Releases are infrequent.
pip install flake8-implicit-str-concatNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configure flake8 to enable the plugin (it runs automatically once installed). The example ignores all implicit concat rules; use selective ignores as needed.
Just install the package; flake8 will automatically load it.
Add 'flake8-implicit-str-concat' to your requirements file or pre-commit hooks.
Use .flake8 or command line to selectively disable/enable rules.
Upgrade flake8 to a recent version (>=3.0).
Install the plugin in the same environment as flake8: pip install flake8-implicit-str-concat
Add a '+' operator: 'foo' + 'bar'
No dependency data recorded yet.