1.0.57 • Published 17 days ago

@markw65/prettier-plugin-monkeyc v1.0.57

Weekly downloads
-
License
MIT
Repository
github
Last release
17 days ago

@markw65/prettier-plugin-monkeyc

A prettier plugin for formatting monkey-c code.

Intro

Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.

This plugin adds support for the monkey-c language to Prettier.

Input

    dc.drawText(_width/2, 3,Graphics.FONT_TINY, "Ax = "+_accel[0], Graphics.TEXT_JUSTIFY_CENTER);

Output

    dc.drawText(
        _width / 2,
        3,
        Graphics.FONT_TINY,
        "Ax = " + _accel[0],
        Graphics.TEXT_JUSTIFY_CENTER
    );

Install

npm install --save-dev @markw65/prettier-plugin-monkeyc

# or globally

npm install --global @markw65/prettier-plugin-monkeyc

Use

With VSCode

Install the Prettier extension from https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode.

  • if you installed the plugin globally, you need to enable prettier.resolveGlobalModules in your settings.
  • if you installed locally, the documentation says it should just work, but I've found you need to tell the extension how to find the local copy of prettier. Put "prettier.prettierPath": "./node_modules/prettier" in your .vscode/settings.json.

Once configured as above, VSCode's Format Document command (Option-Shift-F) will reformat your .mc files for you.

With Node.js

If you installed prettier as a local dependency, you can run it via

npx prettier path/to/code.mc --write

If you installed globally, run

prettier path/to/code.mc --write

Options

The standard Prettier options (such as tabWidth) can be used.

Development

To make a production build, run

npm run build-release

To develop, run

npm run watch

This will keep your build up to date as you make changes. You can then execute Prettier with

npx prettier [ --write ] --plugin build/prettier-plugin-monkeyc.cjs ...

Code structure

@markw65/prettier-plugin-monkeyc uses a Peggy grammar (located in peg/) to parse monkeyc. This grammar was originally copied from the Peggy sample javascript grammar, and still has some javascript features that aren't relevant to monkeyc. I'm planning to clean that up, but for now it shouldn't matter.

@markw65/prettier-plugin-monkeyc is written in native ES6 javascript, but uses webpack to dynamically compile to commonjs, because thats what prettier wants.

The plugin is organized as follows:

  • prettier-plugin-monkeyc.js This file exports the objects required of a Prettier plugin.
  • peg/monkeyc.peggy The Peggy grammar for monkey-c.
  • src/printer.js Printers take an AST and produce a Doc (the intermediate format that Prettier uses). The current implementation is a thin wrapper around Prettier's default, estree printer. It handles just the nodes that it needs to, and delegates to "javascript-like" behavior for everything else.

Release Notes

See Change Log

1.0.57

17 days ago

1.0.56

1 month ago

1.0.55

3 months ago

1.0.54

3 months ago

1.0.51

9 months ago

1.0.50

10 months ago

1.0.53

7 months ago

1.0.52

8 months ago

1.0.48

1 year ago

1.0.47

1 year ago

1.0.46

1 year ago

1.0.49

1 year ago

1.0.44

1 year ago

1.0.43

1 year ago

1.0.45

1 year ago

1.0.39

1 year ago

1.0.38

1 year ago

1.0.40

1 year ago

1.0.42

1 year ago

1.0.41

1 year ago

1.0.37

1 year ago

1.0.36

2 years ago

1.0.35

2 years ago

1.0.26

2 years ago

1.0.25

2 years ago

1.0.29

2 years ago

1.0.28

2 years ago

1.0.27

2 years ago

1.0.33

2 years ago

1.0.32

2 years ago

1.0.31

2 years ago

1.0.30

2 years ago

1.0.34

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.22

2 years ago

1.0.21

2 years ago

1.0.20

2 years ago

1.0.24

2 years ago

1.0.23

2 years ago

1.0.15

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago