Metadata-Version: 2.1
Name: pylint-websockets
Version: 0.1.1
Summary: A Pylint plugin for the Python websockets library
Home-page: https://github.com/ThatXliner/pylint-pylint-websockets
Author: Bryan Hu
Author-email: bryan.hu.2020@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: pylint
Requires-Dist: websockets
Description-Content-Type: text/markdown

# Pylint Websockets

A pylint plugin for websockets

## Installation

Via Pip

```
pip install pylint-websockets
```

Via Poetry

```
poetry add --dev pylint-websockets
```

## Usage

Add the following arguments when running Pylint:

```
--load-plugins=pylint_websockets
```

Alternatively, add the following to your `pyproject.toml`:

```toml
[tool.pylint.MASTER]
load-plugins = 'pylint_websockets'
```

