Linters composer
Project description
🔫 pystolint 🔫
Yet another python linter?
No. It's just runner for ruff + mypy with this settings
Why?
I'm fed up with:
- Having to copy settings for every single project. (at least until "parent pyproject.toml" is not invented)
- Not being able to apply checks only to git diffs, which makes it hard to add linters to large projects
- Not being able to deprecate certain things and preventing them in new code.
Install
Simple:
pip install pystolint
or
pip install git+ssh://git@github.com/hhru/pystolint.git@master
Dev:
- Clone repo
git clone git@github.com:hhru/pystolint.git ~/projects/pystolint
cd ~/projects/pystolint
python -m venv .venv
source .venv/bin/activate
pip install -e .
- Create global shortcut (/usr/local/bin/pys):
#!/path/to/your/pystolint/.venv/bin/python
import sys
from pystolint.main import main
if __name__ == '__main__':
sys.exit(main())
- Make executable:
chmod +x /usr/local/bin/pys
Usage
Check code:
pys check .
pys check path1 path2
pys check --diff
Format code:
pys format .
pys format path1 path2
Settings
can be specified from cli or pyproject.toml. cli settings have bigger priority
example toml:
[tool.pystolint]
base_toml_path = "/path/to/shared/config.toml"
base_branch_name = "develop"
cli:
--base_toml_path- path or link for replace pystolint default settings--base_branch_name- branch name from which to get diff (default is master)--config- specify path to toml configs (default ispyproject.tomlin current dir)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pystolint-0.1.1.tar.gz
(22.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
pystolint-0.1.1-py3-none-any.whl
(21.0 kB
view details)
File details
Details for the file pystolint-0.1.1.tar.gz.
File metadata
- Download URL: pystolint-0.1.1.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a2b4aa0b96b35aaa3fd9a7db167bbdfcb3f3b5630dfe9b0a4bda15b2947d354
|
|
| MD5 |
33f25406566e996b7b52d94c75101284
|
|
| BLAKE2b-256 |
e9a155c97c5321250e8e97cbbccecb17fa8a905f59ce07ae5bf7828c8f45029d
|
File details
Details for the file pystolint-0.1.1-py3-none-any.whl.
File metadata
- Download URL: pystolint-0.1.1-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff92a72e4d648df0b75177a357fb542222115b5c199f3df2dad77eec69ad8745
|
|
| MD5 |
efcaa55ef1f469033cdb5b5696dc2603
|
|
| BLAKE2b-256 |
95365c0f141dff2d05db5fe56a959e01abb0cd68631561ffce45a31c587ddb21
|