Linters composer
Project description
🔫 pystolint 🔫
Yet another python linter?
No. It's just a runner for ruff + mypy with these 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 local 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.5.0.tar.gz
(27.0 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.5.0-py3-none-any.whl
(24.3 kB
view details)
File details
Details for the file pystolint-0.5.0.tar.gz.
File metadata
- Download URL: pystolint-0.5.0.tar.gz
- Upload date:
- Size: 27.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff18ef9d0f12a45c1d6991ccee145d14cfc7aead102dcbbaa62f44f91eea3754
|
|
| MD5 |
15c202f55d15d1b5e9b2f64f74c95b3b
|
|
| BLAKE2b-256 |
0a56f8b6e92b107a7d32b91cc98f00a687620af8d03a4c0741e7ac051cf608c1
|
File details
Details for the file pystolint-0.5.0-py3-none-any.whl.
File metadata
- Download URL: pystolint-0.5.0-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61c5afef5e42ee857cf0c14f32127549b46de08465e98260a2689ff579a0b3db
|
|
| MD5 |
d346ddec67b647ecc8990b0d400df684
|
|
| BLAKE2b-256 |
e96810f9133f82697375d6b51571e87849210cb675393ccd3d9af2dc1932ecb2
|