Flake8 lint for trailing commas.
Project description
Note: Forked from PyCQA/flake8-commas to add support for Python 3.12, match statement, and other features. Support for Python version below 3.8 has been dropped, as well as older (5.x) versions of flake8.
Usage
If you are using flake8 it’s as easy as:
pip install flake8-commas-x
Now you can avoid those annoying merge conflicts on dictionary and list diffs.
Errors
Different versions of python require commas in different places. Ignore the errors for languages you don’t use in your flake8 config:
Code |
message |
---|---|
C812 |
missing trailing comma |
C813 |
missing trailing comma in Python 3 |
C814 |
missing trailing comma in Python 2 |
C815 |
missing trailing comma in Python 3.5+ |
C816 |
missing trailing comma in Python 3.6+ |
C818 |
trailing comma on bare tuple prohibited |
C819 |
trailing comma prohibited |
Examples
lookup_table = {
'key1': 'value',
'key2': 'something' # <-- missing a trailing comma
}
json_data = json.dumps({
"key": "value",
}), # <-- incorrect trailing comma. json_data is now a tuple. Likely by accident.
3.0.0 (2024-03-12)
Project renamed to flake8-commas-x to continue maintenance.
Support dropped for Python <3.8.
Support added for Python 3.12.
Drop explicit noqa handling; this is handled by flake8 now.
Remove use of pkg_resources in favour of importlib.
CI moved to GitHub Actions.
2.1.0 (2021-10-13)
Remove upper bound on flake8. (Issue #67)
Note: this project is no longer maintained, and now black or https://github.com/asottile/add-trailing-comma is recommended instead. (Issue #63) (Issue #69)
2.0.0 (2018-03-19)
Hide ._base from flake8 –version. (Issue #45)
Update URL to https://github.com/PyCQA/flake8-commas/. (Issue #51)
Add check for trailing commas on bare tuples - C818, thanks to Chris AtLee and Arkadiusz Adamski (PR #52)
1.0.0 (2018-01-04)
No changes from 0.5.1, just releasing the first major version.
0.5.1 (2018-01-02)
Refactor single/multi tuple/subscript to simply count commas in all cases.
Prohibit trailing commas in lambda parameter lists.
Fix a missing trailing comma false positive in subcripts with slices.
Fix a prohibited trailing comma false positve in subscripts with slices.
All (Issue #48)
0.5.0 (2018-01-02)
0.4.3 (2017-04-25)
Enforce trailing commas in subscript tuples and slices again. Regression from 0.4.2 (Issue #42)
0.4.2 (2017-04-18)
0.4.1 (2017-01-18)
Add the framework flake8 trove classifier.
0.4.0 (2017-01-18)
0.3.1 (2017-01-18)
Also parse unpacks with literals. (Issue #30)
0.3.0 (2017-01-16)
0.2.0 (2017-01-13)
First version of flake8-commas with changelog
Fix HTML readme render on PyPI.
Support various parenth_form edge cases.
Merge from flake8-trailing-commas
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flake8-commas-x-3.0.0.tar.gz
.
File metadata
- Download URL: flake8-commas-x-3.0.0.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f46163df36a64d35f1ef4ef08265383554ba7c31a3725a56c05465737a4ab539 |
|
MD5 | 17ba5fdfd2e3566172aac60b5b3755d4 |
|
BLAKE2b-256 | c400f71fd945fd870f24e75e728889bfcc16d1c4f6bac6e3e63473f8178b7e34 |
Provenance
File details
Details for the file flake8_commas_x-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: flake8_commas_x-3.0.0-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ff604a4c3c06f79c6948c13e171bbde25075219212dec01294b07d9fc740c2f |
|
MD5 | 7a2e100e0e99fc69027bf8dcd2798962 |
|
BLAKE2b-256 | 877a6745680e37987efac86930e28a2c53d552ef824d264bf04931696fae89cb |