Skip to main content

Vyper formatter

Project description

image

Mamushi

image Build Status codecov License: MIT Code style: black

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

pre-commit

Add to your .pre-commit-config.yaml:

repos:
  - repo: https://github.com/benber86/mamushi
    rev: main
    hooks:
      - id: mamushi
        args: [ --line-length=100 ]

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 ?
)

Disabling formatting

Mamushi supports # fmt: off and # fmt: on tags to disable formatting for specific regions of code:

x: uint256 = 1

# fmt: off
y:    uint256     =     2    # preserve this spacing
z:uint256=3
# fmt: on

a: uint256 = 4  # this will be formatted normally

The code between # fmt: off and # fmt: on will be preserved exactly as written, including all spacing and line breaks. These tags can be nested, and unclosed # fmt: off regions will extend to the end of the file.

You can also use # nosplit on individual lines to prevent line splitting while still applying spacing normalization:

assert not self.user[receiver][msg.sender], "Error message"  # nosplit

Note: # fmt: skip is not currently supported.

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mamushi-0.1.1.tar.gz (48.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mamushi-0.1.1-py3-none-any.whl (49.7 kB view details)

Uploaded Python 3

File details

Details for the file mamushi-0.1.1.tar.gz.

File metadata

  • Download URL: mamushi-0.1.1.tar.gz
  • Upload date:
  • Size: 48.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.11.8

File hashes

Hashes for mamushi-0.1.1.tar.gz
Algorithm Hash digest
SHA256 770e6abe067cf3be037a33a9d4a0892d86671060fb0393b8929fc98ebd2e5d77
MD5 00429ac3935b10fe7f99eb54a0738c52
BLAKE2b-256 2397a93b78185e210b94528f707274af57217362a9b88e14d63174f3ef755f5b

See more details on using hashes here.

File details

Details for the file mamushi-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: mamushi-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 49.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.11.8

File hashes

Hashes for mamushi-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ad9d7b180cb05d156e4491ca243f1d4f2678665bf020d04342a532323a448300
MD5 3ee131c9444cffd6c6fb80c208831663
BLAKE2b-256 e50d84b03074a79d5d706d22e06bd919f69bea6081657e0dfa7695ecfe569045

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page