Metadata-Version: 2.3
Name: flake8-consistent-quotes
Version: 0.1.2
Summary: Flake8 plugin to ensure consistent usage of quotes
License: MIT
Keywords: flake8,plugin,quotes,code quality
Author: Холоднов Эмиль
Author-email: emil.kholod@gmail.com
Requires-Python: >=3.9.0
Classifier: Environment :: Console
Classifier: Framework :: Flake8
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: flake8 (>=5.0.0,<7.3.0)
Project-URL: Homepage, https://github.com/emilkholod/flake8-consistent-quotes
Project-URL: Issues, https://github.com/emilkholod/flake8-consistent-quotes/issues
Project-URL: Repository, https://github.com/emilkholod/flake8-consistent-quotes
Description-Content-Type: text/markdown

# Project: flake8-consistent-quotes

## Description

This project provides a plugin for Flake8 that checks for quote consistency at the file level. The plugin is intended for use in projects that do **not** have an established convention for single vs. double quotes.

If your project **does** follow a specific quote style convention, consider using the [flake8-quotes](https://pypi.org/project/flake8-quotes/) plugin instead.

## How the Plugin Works

The plugin counts the number of quote types used within a file and raises an error if the less frequently used quote appears.
In such cases, the plugin emits the error: `FCQ001`.

## Usage

To install the plugin, use the following command:

```bash
pip install flake8-consistent-quotes
```

