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

The # fmt: on, # fmt: off, # fmt: skip tags from black are currently not supported. You can use # nosplit to prevent the formatter from a splitting a line but formatting will still be applied to spacing.

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.0.9.tar.gz (46.5 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.0.9-py3-none-any.whl (48.7 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for mamushi-0.0.9.tar.gz
Algorithm Hash digest
SHA256 b8b22fff41e0720833a37fb45bdbc7fddcadb32210a8d8c5f8e7ef66e1e3ccc5
MD5 2c90440e5fb606f2538e205c5d943880
BLAKE2b-256 3a4503a93c39bd11f219f8276121cb2ef48bbed2cbb3cb801adfeb8b844644e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mamushi-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 48.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.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 d8323eae22b796f768679adfad9109ae2faadde5ea52c93b4ad6588e987139df
MD5 58c52487b8769a62cd8092883841819c
BLAKE2b-256 654ac2669ef19873667a7740e9066570cb9f6a76ff81b59faf9353ae555a4ce6

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