Vyper formatter
Project description
Mamushi
Mamushi is a fork of the popular Black formatter adapted to the Vyper programming language. Mamushi reformats your Vyper contracts in a readable and consistent way.
Installation
pip install mamushi
Usage
Search all *.vy files and overwrite them after formatting:
mamushi
Specify a list of *.vy files or directories and output to console after formatting:
mamushi [SRC]
Output the result to console instead of overwriting:
mamushi --in-place False
Notes
Line length
The default line length is 80. Line length can be adjusted by using the --line-length
option.
AST Safety
By default, mamushi will compare the AST of your reformatted code with that of the original to ensure that the changes applied remain strictly formal. The option can be disabled with --safe False
to speed things up.
Trailing commas
When handling expressions split by commas, mamushi follows Black's default behavior.
Mamushi also uses Black's magic trailing comma to give user the option to collapse a comma-separated expression into one line if possible. If a trailing comma is added, mamushi will always explode the expression. This can have important consequences for the commenting of your code. Consider the following two examples:
This code snippet:
self.b(0, # amount to send
msg.sender, # sender
True, # refund ?
)
formats to the following with a trailing comma after the last argument (True
):
self.b(
0, # amount to send
msg.sender, # sender
True, # refund ?
)
but if the trailing comma is removed, the line will be collapsed to:
self.b(0, msg.sender, True) # amount to send # sender # refund ?
Future developments
- Multiprocessing when processing multiple files
- Configuration files
- Improve Windows compatibility
- Handle versioning of Vyper/lark grammar
- Refactoring comment handling in the parser
- Add .gitignore / exclude / include support
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
Built Distribution
File details
Details for the file mamushi-0.0.2b0.tar.gz
.
File metadata
- Download URL: mamushi-0.0.2b0.tar.gz
- Upload date:
- Size: 44.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8dabbb783c6803b8b4a60506a63263947a5f80e0e07588799935e837abc7f82 |
|
MD5 | f9b56aba00c78151e6951ad9d7fb1451 |
|
BLAKE2b-256 | 285bbdf5694fcc89fb1543371c297364ce68d01a051b03056216310f7d40cd46 |
File details
Details for the file mamushi-0.0.2b0-py3-none-any.whl
.
File metadata
- Download URL: mamushi-0.0.2b0-py3-none-any.whl
- Upload date:
- Size: 47.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53379ea746cea4b8e0acb573c063e5fb6a42b8bd1b6b4c121e6c3e9eaab5beb7 |
|
MD5 | 617d17c49fefc919b05ebd38420bc682 |
|
BLAKE2b-256 | bc8d6b3d2286712f526a2c07d451c4753a9fd15c41c3ff44162addc11586e153 |