dprint-plugin-dockerfile 0.5.0

A WIP dockerfile formatter for dprint.
Documentation
1
2
3
4
5
6
7
8
9
pub use monch::ParseErrorFailureError as ParseError;

/// An error that can occur while formatting a Dockerfile.
#[derive(Debug, thiserror::Error)]
pub enum FormatError {
  /// The input could not be parsed as a Dockerfile.
  #[error(transparent)]
  Parse(#[from] ParseError),
}