{"categories":[{"label":"Python Modules","url":"https://skillfed.io/packages/category/software-development-libraries-python-modules/21"},{"label":"Quality Assurance","url":"https://skillfed.io/packages/category/software-development-quality-assurance/4"}],"enrichment":{"capability":"A Flake8 plugin that detects and reports implicit string literal concatenation issues, including unintended concatenations on single lines and missing commas in collections.","skillfed_tags":["linting","code-quality","flake8-plugin"],"use_cases":["Catch missing commas in tuple or list literals where strings accidentally concatenate instead of remaining separate items.","Detect implicit string concatenation introduced by Black or other code formatters that you want to avoid or refactor.","Enforce consistent string concatenation style across a team's codebase as part of CI/CD linting.","Find and fix unintended string merges that could silently introduce bugs in data structures or configurations.","Enforce explicit parentheses around intentional multi-line string concatenation to make intent clear."],"what_it_does":"This is a Flake8 plugin that catches string concatenation mistakes in Python code. It detects four categories of issues: implicit concatenation on a single line (often introduced by code formatters like Black), implicit concatenation across continuation lines, explicit concatenation that should be implicit, and implicit concatenation inside collection literals where a missing comma is likely the real problem. The plugin uses the ISC prefix for its violation codes (ISC001 through ISC004).\n\nThe tool is particularly useful for catching silent bugs where missing commas in lists or tuples cause adjacent string literals to merge unexpectedly. It integrates into your existing Flake8 workflow and requires no runtime dependencies beyond Flake8 itself. The package is actively maintained, supports current Python versions (3.10 through 3.15), and has been in development since 2019.","worth_installing":"Yes. This is a lightweight, actively maintained Flake8 plugin with no dependencies that solves a real problem\u2014catching silent string concatenation bugs that are easy to miss. The MIT license is permissive, install friction is minimal, and it integrates seamlessly into existing Flake8 workflows. Recommended for any Python project using Flake8."},"id":"flake8-implicit-str-concat","links":{"html":"https://skillfed.io/packages/flake8-implicit-str-concat","md":"https://skillfed.io/packages/flake8-implicit-str-concat.md","pypi":"https://pypi.org/project/flake8-implicit-str-concat/"},"maintenance":{"status":"active"},"meta":{"latest_release":"2026-07-24","license_spdx":"MIT","license_treatment":"permissive","name":"flake8-implicit-str-concat","python_support":"supports_current","summary":"Flake8 plugin to encourage correct string literal concatenation"},"popularity":{"monthly_downloads":93667,"position":13372,"tier":"top_15000"},"security":{"n_vulnerabilities":0},"version":"0.7.0"}
