Metadata-Version: 2.3
Name: variable-declaration-checker
Version: 0.1.0
Summary: A flake8 plugin that forces your variable to be declared, and not duplicately declared.
Keywords: 
Author: yueyinqiu
Author-email: yueyinqiu <yueyinqiu@outlook.com>
License: MIT License
Requires-Dist: flake8>=7.3.0
Requires-Python: >=3.12
Project-URL: Repository, https://github.com/yueyinqiu/variable_declaration_checker.git
Description-Content-Type: text/markdown

# variable_declaration_checker

> We have migrated to Flake8 as Pylint's performance becomes a bottleneck on larger projects. Since our workflow focuses on file-by-file linting rather than cross-module dependency checks, Flake8 is a better fit. If you still prefer Pylint, use `variable-declaration-checker==0.0.7`.

Installation:

```shell
pip install variable-declaration-checker
```

Usage:

```shell
flake8 --select WVarDec
```
