Flake8 lint for quotes.
Project description
Major update from flake8-quotes 2.0.0
We automatically encourage avoiding escaping quotes as per PEP 8. To disable this, use --no-avoid-escape (can be used in configuration file via avoid-escape).
Deprecated option removed from this fork of flake8-quotes
--quotes - now renamed to --inline-quotes.
Usage
If you are using flake8 it’s as easy as:
pip install flake8-x-quotes
Now you don’t need to worry about people like @sectioneight constantly complaining that you are using double-quotes and not single-quotes.
Warnings
This package adds flake8 warnings with the prefix Q0. You might want to enable this warning inside your flake8 configuration file. Typically that will be .flake8 inside the root folder of your project.
select = Q0
The current set of warnings is:
Code |
Description |
Q000 |
Remove bad quotes |
Q001 |
Remove bad quotes from multiline string |
Q002 |
Remove bad quotes from docstring |
Q003 |
Change outer quotes to avoid escaping inner quotes |
Q099 |
[flake8-x-quotes] Remove bad quotes from f-string - CODE IS SUBJECT TO CHANGE |
Configuration
By default, we expect single quotes (’) and look for unwanted double quotes (”) (other way around for f-string quotes, multiline quotes, and docstring quotes). To expect double quotes (”) and find unwanted single quotes (‘), use the CLI option:
flake8 --inline-quotes '"'
# We also support "double" and "single"
# flake8 --inline-quotes 'double'
#
# We also support configuration for multiline quotes
# flake8 --inline-quotes '"' --multiline-quotes "'"
# We also support "'''"
# flake8 --inline-quotes '"' --multiline-quotes "'''"
#
# We also support docstring quotes similarly
# flake8 --inline-quotes '"' --docstring-quotes "'"
# flake8 --inline-quotes '"' --docstring-quotes "'''"
# We also support disabling escaping quotes
# flake8 --no-avoid-escape
# [flake8-x-quotes] configure for f-string vs normal string literal:
flake8 --inline-quotes 'double' --f-string-quotes 'single'
or configuration option in tox.ini/setup.cfg.
[flake8]
inline-quotes = "
# We also support "double" and "single"
# inline-quotes = double
#
# We also support configuration for multiline quotes
# multiline-quotes = '
# We also support "'''"
# multiline-quotes = '''
#
# We also support docstring quotes similarly
# docstring-quotes = '
# docstring-quotes = '''
#
# We also support disabling escaping quotes
# avoid-escape = False
#
# [flake8-x-quotes] configure for f-string vs normal string literal:
# inline-quotes = double
# f-string-quotes = single
Supported Python versions
minimum Python version tested & supported with: 3.8
known issue with f-string starting with Python 3.12: <https://github.com/zheller/flake8-quotes/issues/117>
Caveats
We follow the PEP8 conventions to avoid backslashes in the string. So, no matter what configuration you are using (single or double quotes) these are always valid strings
s = 'double "quotes" wrapped in singles are ignored'
s = "single 'quotes' wrapped in doubles are ignored"
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
File details
Details for the file flake8-x-quotes-0.0.1.tar.gz
.
File metadata
- Download URL: flake8-x-quotes-0.0.1.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6890d6b3dd180f256baa0989ef8627da938c6932c38ab040982115da97848f25 |
|
MD5 | cb4a114fb393245983c73bf613146c2b |
|
BLAKE2b-256 | 8c33a69518bbde53e301f179338fff3b19ef019bc14545c2a23ff7eb7c6c86cf |