id | title |
---|---|
plugins |
Plugins |
Plugins are ways of adding new languages to Prettier. Prettier’s own implementations of all languages are expressed using the plugin API. The core prettier
package contains JavaScript and other web-focused languages built in. For additional languages you’ll need to install a plugin.
Plugins are automatically loaded if you have them installed in the same node_modules
directory where prettier
is located. Plugin package names must start with @prettier/plugin-
or prettier-plugin-
or @<scope>/prettier-plugin-
to be registered.
<scope>
should be replaced by a name, read more about NPM scope.
When plugins cannot be found automatically, you can load them with:
-
The CLI, via the
--plugin
and--plugin-search-dir
:prettier --write main.foo --plugin-search-dir=./dir-with-plugins --plugin=./foo-plugin
Tip: You can set
--plugin
or--plugin-search-dir
options multiple times. -
Or the API, via the
plugins
andpluginSearchDirs
options:prettier.format("code", { parser: "foo", pluginSearchDirs: ["./dir-with-plugins"], plugins: ["./foo-plugin"], });
Prettier expects each of pluginSearchDirs
to contain node_modules
subdirectory, where @prettier/plugin-*
, @*/prettier-plugin-*
and prettier-plugin-*
will be searched. For instance, this can be your project directory or the location of global npm modules.
Providing at least one path to --plugin-search-dir
/pluginSearchDirs
turns off plugin autoloading in the default directory (i.e. node_modules
above prettier
binary).
@prettier/plugin-php
@prettier/plugin-pug
by @Shinigami92@prettier/plugin-ruby
@prettier/plugin-xml
prettier-plugin-apex
by @dangmaiprettier-plugin-elm
by @giCentreprettier-plugin-go-template
by @NiklasPorprettier-plugin-java
by @JHipsterprettier-plugin-kotlin
by @Angry-Potatoprettier-plugin-properties
by @eemeliprettier-plugin-solidity
by @mattiaerreprettier-plugin-svelte
by @UnwrittenFunprettier-plugin-toml
by @bd82prettier-plugin-sh
by @JounQin
Prettier plugins are regular JavaScript modules with five exports:
languages
parsers
printers
options
defaultOptions
Languages is an array of language definitions that your plugin will contribute to Prettier. It can include all of the fields specified in prettier.getSupportInfo()
.
It must include name
and parsers
.
export const languages = [
{
// The language name
name: "InterpretedDanceScript",
// Parsers that can parse this language.
// This can be built-in parsers, or parsers you have contributed via this plugin.
parsers: ["dance-parse"],
},
];
Parsers convert code as a string into an AST.
The key must match the name in the parsers
array from languages
. The value contains a parse function, an AST format name, and two location extraction functions (locStart
and locEnd
).
export const parsers = {
"dance-parse": {
parse,
// The name of the AST that
astFormat: "dance-ast",
hasPragma,
locStart,
locEnd,
preprocess,
},
};
The signature of the parse
function is:
function parse(text: string, parsers: object, options: object): AST;
The location extraction functions (locStart
and locEnd
) return the starting and ending locations of a given AST node:
function locStart(node: object): number;
(Optional) The pragma detection function (hasPragma
) should return if the text contains the pragma comment.
function hasPragma(text: string): boolean;
(Optional) The preprocess function can process the input text before passing into parse
function.
function preprocess(text: string, options: object): string;
Printers convert ASTs into a Prettier intermediate representation, also known as a Doc.
The key must match the astFormat
that the parser produces. The value contains an object with a print
function. All other properties (embed
, preprocess
, etc.) are optional.
export const printers = {
"dance-ast": {
print,
embed,
preprocess,
insertPragma,
canAttachComment,
isBlockComment,
printComment,
handleComments: {
ownLine,
endOfLine,
remaining,
},
},
};
Prettier uses an intermediate representation, called a Doc, which Prettier then turns into a string (based on options like printWidth
). A printer's job is to take the AST generated by parsers[<parser name>].parse
and return a Doc. A Doc is constructed using builder commands:
const {
// GONE
// concat,
join,
line,
ifBreak,
group,
} = require("prettierx").doc.builders;
The printing process works as follows:
preprocess(ast: AST, options: object): AST
, if available, is called. It is passed the AST from the parser. The AST returned bypreprocess
will be used by Prettier. Ifpreprocess
is not defined, the AST returned from the parser will be used.- Comments are attached to the AST (see Handling comments in a printer for details).
- A Doc is recursively constructed from the AST. i)
embed(path: AstPath, print, textToDoc, options: object): Doc | null
is called on each AST node. Ifembed
returns a Doc, that Doc is used. ii) Ifembed
is undefined or returns a falsy value,print(path: AstPath, options: object, print): Doc
is called on each AST node.
Most of the work of a plugin's printer will take place in its print
function, whose signature is:
function print(
// Path to the AST node to print
path: AstPath,
options: object,
// Recursively print a child node
print: (selector?: string | number | Array<string | number> | AstPath) => Doc
): Doc;
The print
function is passed the following parameters:
path
: An object, which can be used to access nodes in the AST. It’s a stack-like data structure that maintains the current state of the recursion. It is called “path” because it represents the path to the current node from the root of the AST. The current node is returned bypath.getValue()
.options
: A persistent object, which contains global options and which a plugin may mutate to store contextual data.print
: A callback for printing sub-nodes. This function contains the core printing logic that consists of steps whose implementation is provided by plugins. In particular, it calls the printer’sprint
function and passes itself to it. Thus, the twoprint
functions – the one from the core and the one from the plugin – call each other while descending down the AST recursively.
Here’s a simplified example to give an idea of what a typical implementation of print
looks like:
const {
builders: { group, indent, join, line, softline },
} = require("prettier").doc;
function print(path, options, print) {
const node = path.getValue();
switch (node.type) {
case "list":
return group([
"(",
indent([softline, join(line, path.map(print, "elements"))]),
softline,
")",
]);
case "pair":
return group([
"(",
indent([softline, print("left"), line, ". ", print("right")]),
softline,
")",
]);
case "symbol":
return node.name;
}
throw new Error(`Unknown node type: ${node.type}`);
}
Check out prettier-python's printer for some examples of what is possible.
The embed
function is called when the plugin needs to print one language inside another. Examples of this are printing CSS-in-JS or fenced code blocks in Markdown. Its signature is:
function embed(
// Path to the current AST node
path: AstPath,
// Print a node with the current printer
print: (selector?: string | number | Array<string | number> | AstPath) => Doc,
// Parse and print some text using a different parser.
// You should set `options.parser` to specify which parser to use.
textToDoc: (text: string, options: object) => Doc,
// Current options
options: object
): Doc | null;
The embed
function acts like the print
function, except that it is passed an additional textToDoc
function, which can be used to render a doc using a different plugin. The embed
function returns a Doc or a falsy value. If a falsy value is returned, the print
function is called with the current path
. If a Doc is returned, that Doc is used in printing and the print
function is not called.
For example, a plugin that had nodes with embedded JavaScript might have the following embed
function:
function embed(path, print, textToDoc, options) {
const node = path.getValue();
if (node.type === "javascript") {
return textToDoc(node.javaScriptText, { ...options, parser: "babel" });
}
return false;
}
The preprocess function can process the AST from parser before passing into print
function.
function preprocess(ast: AST, options: object): AST;
A plugin can implement how a pragma comment is inserted in the resulting code when the --insert-pragma
option is used, in the insertPragma
function. Its signature is:
function insertPragma(text: string): string;
Comments are often not part of a language's AST and present a challenge for pretty printers. A Prettier plugin can either print comments itself in its print
function or rely on Prettier's comment algorithm.
By default, if the AST has a top-level comments
property, Prettier assumes that comments
stores an array of comment nodes. Prettier will then use the provided parsers[<plugin>].locStart
/locEnd
functions to search for the AST node that each comment "belongs" to. Comments are then attached to these nodes mutating the AST in the process, and the comments
property is deleted from the AST root. The *Comment
functions are used to adjust Prettier's algorithm. Once the comments are attached to the AST, Prettier will automatically call the printComment(path, options): Doc
function and insert the returned doc into the (hopefully) correct place.
Called whenever a comment node needs to be printed. It has the signature:
function printComment(
// Path to the current comment node
commentPath: AstPath,
// Current options
options: object
): Doc;
function canAttachComment(node: AST): boolean;
This function is used for deciding whether a comment can be attached to a particular AST node. By default, all AST properties are traversed searching for nodes that comments can be attached to. This function is used to prevent comments from being attached to a particular node. A typical implementation looks like
function canAttachComment(node) {
return node.type && node.type !== "comment";
}
function isBlockComment(node: AST): boolean;
Returns whether or not the AST node is a block comment.
The handleComments
object contains three optional functions, each with signature
function(
// The AST node corresponding to the comment
comment: AST,
// The full source code text
text: string,
// The global options object
options: object,
// The AST
ast: AST,
// Whether this comment is the last comment
isLastComment: boolean
): boolean
These functions are used to override Prettier's default comment attachment algorithm. ownLine
/endOfLine
/remaining
is expected to either manually attach a comment to a node and return true
, or return false
and let Prettier attach the comment.
Based on the text surrounding a comment node, Prettier dispatches:
ownLine
if a comment has only whitespace preceding it and a newline afterwards,endOfLine
if a comment has a newline afterwards but some non-whitespace preceding it,remaining
in all other cases.
At the time of dispatching, Prettier will have annotated each AST comment node (i.e., created new properties) with at least one of enclosingNode
, precedingNode
, or followingNode
. These can be used to aid a plugin's decision process (of course the entire AST and original text is also passed in for making more complicated decisions).
The util.addTrailingComment
/addLeadingComment
/addDanglingComment
functions can be used to manually attach a comment to an AST node. An example ownLine
function that ensures a comment does not follow a "punctuation" node (made up for demonstration purposes) might look like:
const { util } = require("prettier");
function ownLine(comment, text, options, ast, isLastComment) {
const { precedingNode } = comment;
if (precedingNode && precedingNode.type === "punctuation") {
util.addTrailingComment(precedingNode, comment);
return true;
}
return false;
}
Nodes with comments are expected to have a comments
property containing an array of comments. Each comment is expected to have the following properties: leading
, trailing
, printed
.
The example above uses util.addTrailingComment
, which automatically sets comment.leading
/trailing
/printed
to appropriate values and adds the comment to the AST node's comments
array.
The --debug-print-comments
CLI flag can help with debugging comment attachment issues. It prints a detailed list of comments, which includes information on how every comment was classified (ownLine
/endOfLine
/remaining
, leading
/trailing
/dangling
) and to which node it was attached. For Prettier’s built-in languages, this information is also available on the Playground (the 'show comments' checkbox in the Debug section).
options
is an object containing the custom options your plugin supports.
Example:
options: {
openingBraceNewLine: {
type: "boolean",
category: "Global",
default: true,
description: "Move open brace for code blocks onto new line."
}
}
If your plugin requires different default values for some of Prettier’s core options, you can specify them in defaultOptions
:
defaultOptions: {
tabWidth: 4
}
A util
module from Prettier core is considered a private API and is not meant to be consumed by plugins. Instead, the util-shared
module provides the following limited set of utility functions for plugins:
type Quote = '"' | "'";
type SkipOptions = { backwards?: boolean };
function getMaxContinuousCount(str: string, target: string): number;
function getStringWidth(text: string): number;
function getAlignmentSize(value: string, tabWidth: number, startIndex?: number): number;
function getIndentSize(value: string, tabWidth: number): number;
function skip(chars: string | RegExp): (text: string, index: number | false, opts?: SkipOptions) => number | false;
function skipWhitespace(text: string, index: number | false, opts?: SkipOptions): number | false;
function skipSpaces(text: string, index: number | false, opts?: SkipOptions): number | false;
function skipToLineEnd(text: string, index: number | false, opts?: SkipOptions): number | false;
function skipEverythingButNewLine(text: string, index: number | false, opts?: SkipOptions): number | false;
function skipInlineComment(text: string, index: number | false): number | false;
function skipTrailingComment(text: string, index: number | false): number | false;
function skipNewline(text: string, index: number | false, opts?: SkipOptions): number | false;
function hasNewline(text: string, index: number, opts?: SkipOptions): boolean;
function hasNewlineInRange(text: string, start: number, end: number): boolean;
function hasSpaces(text: string, index: number, opts?: SkipOptions): boolean;
function makeString(rawContent: string, enclosingQuote: Quote, unescapeUnnecessaryEscapes?: boolean): string;
function getNextNonSpaceNonCommentCharacterIndex<N>(text: string, node: N, locEnd: (node: N) => number): number | false;
function isNextLineEmptyAfterIndex(text: string, index: number): boolean;
function isNextLineEmpty<N>(text: string, node: N, locEnd: (node: N) => number): boolean;
function isPreviousLineEmpty<N>(text: string, node: N, locStart: (node: N) => number): boolean;
- How to write a plugin for Prettier: Teaches you how to write a very basic Prettier plugin for TOML.
Since plugins can be resolved using relative paths, when working on one you can do:
const prettier = require("prettierx");
const code = "(add 1 2)";
prettier.format(code, {
parser: "lisp",
plugins: ["."],
});
This will resolve a plugin relative to the current working directory.