Metadata-Version: 2.1
Name: flake8-zale
Version: 0.2.0
Summary: Indentation checker for flake8
Home-page: https://github.com/Kirill-Lekhov/flake8-zale
License: MIT
Keywords: flake8,plugin
Author: Kirill_Lekhov
Author-email: Kirill.Lekhov@mail.ru
Requires-Python: >=3.8.1,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Project-URL: Repository, https://github.com/Kirill-Lekhov/flake8-zale
Description-Content-Type: text/markdown

# flake8-zale [![codecov](https://codecov.io/gh/Kirill-Lekhov/flake8-zale/graph/badge.svg?token=6T2V5MTDA7)](https://codecov.io/gh/Kirill-Lekhov/flake8-zale)


This is a plugin for Flake8 that allows you to check the use of tabs, not spaces.

## Installation
1. Install from pypi
```shell
pip install flake8-zale
```
2. Validate installation
```shell
flake8 --version
```
You should see `flake8-zale` in the list of installed plugins:
```
<flake8-version> (..., flake8-zale: <version>, ...) CPython 3.8.10 on Linux
```

## Error codes
| Code     | Description                |
|----------|----------------------------|
| `EZL100` | Spaces are used as indents |

## Usage
* After installation, the plugin will be automatically applied at each launch;
* If you want to check code only using the plugin, then you should use the `--select` option;
```shell
flake8 --select=EZL
# OR
flake8 --select=EZL100
```
* If you want to ignore certain errors, then you should use the `--ignore` option;
```shell
flake8 --ignore=EZL
# OR
flake8 --ignore=EZL100
```

