Skip to main content

Crate ruff_formatter

Crate ruff_formatter 

Source
Expand description

Infrastructure for code formatting

This module defines FormatElement, an IR to format code documents and provides a means to print such a document to a string. Objects that know how to format themselves implement the Format trait.

§Formatting Traits

  • Format: Implemented by objects that can be formatted.
  • FormatRule: Rule that knows how to format an object of another type. Useful in the situation where it’s necessary to implement Format on an object from another crate. This module defines the FormatRefWithRule and FormatOwnedWithRule structs to pass an item with its corresponding rule.
  • FormatWithRule implemented by objects that know how to format another type. Useful for implementing some reusable formatting logic inside of this module if the type itself doesn’t implement Format

§Formatting Macros

This crate defines two macros to construct the IR. These are inspired by Rust’s fmt macros

  • format!: Formats a formattable object
  • format_args!: Concatenates a sequence of Format objects.
  • write!: Writes a sequence of formattable objects into an output buffer.

Re-exports§

pub use crate::diagnostics::ActualStart;
pub use crate::diagnostics::FormatError;
pub use crate::diagnostics::InvalidDocumentError;
pub use crate::diagnostics::PrintError;
pub use format_element::FormatElement;
pub use format_element::LINE_TERMINATORS;
pub use format_element::normalize_newlines;
pub use group_id::GroupId;

Modules§

diagnostics
format_element
formatter
group_id
macros
prelude
printer

Macros§

best_fitting
Provides multiple different alternatives and the printer picks the first one that fits. Use this as last resort because it requires that the printer must try all variants in the worst case. The passed variants must be in the following order:
dbg_write
Writes formatted data into the given buffer and prints all written elements for a quick and dirty debugging.
format
Creates the Format IR for a value.
format_args
Constructs the parameters for other formatting macros.
write
Writes formatted data into a buffer.

Structs§

Argument
A convenience wrapper for representing a formattable argument.
Arguments
Sequence of objects that should be formatted in the specified order.
BestFitting
The first variant is the most flat, and the last is the most expanded variant. See best_fitting! macro for a more in-detail documentation
FormatOwnedWithRule
Formats the item with the specified rule.
FormatRefWithRule
Formats the referenced item with the specified rule.
FormatState
This structure stores the state that is relevant for the formatting of the whole document.
Formatted
IndentWidth
The visual width of an indentation.
Inspect
Buffer that allows you inspecting elements as they get written to the formatter.
LineWidth
The maximum visual width to which the formatter should try to limit a line.
Printed
PrintedRange
RemoveSoftLinesBuffer
A Buffer that removes any soft line breaks or if_group_breaks elements.
SimpleFormatContext
SimpleFormatOptions
SourceCode
The source code of a document that gets formatted
SourceCodeSlice
A slice into the source text of a document.
SourceMarker
Lightweight sourcemap marker between source and output tokens
VecBuffer
Vector backed Buffer implementation.

Enums§

BufferSnapshot
Snapshot of a buffer state that can be restored at a later point.
IndentStyle

Traits§

Buffer
A trait for writing or formatting into FormatElement-accepting buffers or streams.
BufferExtensions
Format
Formatting trait for types that can create a formatted representation. The ruff_formatter equivalent to std::fmt::Display.
FormatContext
Context object storing data relevant when formatting an object.
FormatOptions
Options customizing how the source code should be formatted.
FormatRule
Rule that knows how to format an object of type T.
FormatRuleWithOptions
Rule that supports customizing how it formats an object of type T.
FormatWithRule
Trait for an object that formats an object with a specified rule.

Functions§

format
The format function takes an Arguments struct and returns the resulting formatting IR.
write
The write function takes a target buffer and an Arguments struct that can be precompiled with the format_args! macro.

Type Aliases§

FormatResult
Public return type of the formatter
PrintResult