0 purchases
aineko style 0.0.2
aineko_style
A pylint checker for misc style conventions
We adopt the Google Python Style Guide with some modifications. This pylint checker is intended to enforce those conventions.
Installation
Install with pip:
pip install aineko_style
Once installed you can either run it directly from the command line:
pylint --load-plugins=aineko_style.checker your_module.py
or add it to the pylint configuration file. Example:
pyproject.toml:
[tool.pylint.main]
load-plugins = ["aineko_style.checker"]
pylintrc:
[MAIN]
load-plugins=aineko_style.checker
Features
Warning Messages
Message ID
Description
Message symbol
C0001
Docstring contains types. Types should be part of the function definition.
docstring-contains-types
Style Conventions
C0001 docstring-contains-types
Yes:
def message(index:int, content:str):
"""short description
Args:
index: The index of the message.
content: The content of the message.
"""
...
No:
def message(index:int, content:str):
"""short description
Args:
index (int): The index of the message.
content (str): The content of the message.
"""
...
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.