pub struct FormattingConfig { /* private fields */ }
Expand description
Configuration for the Formatting
check.
The kind
key is required and is a string. This is used to construct the name of the Git
attribute to look for to find files which are handled by this formatter. The name
key is
optional, but is a string and defaults to the given kind
. The formatter
key is a string
containing the path to the formatter on the system running the checks. Some formatters may
work with configuration files committed to the repository. These will also be checked out
when using this formatter. These may be valid Git path specifications with globs. If
problems are found, the optional fix_message
key (a string) will be added to the message.
This should describe how to fix the issues found by the formatter. The timeout
key is an
optional positive integer. If given, formatters not completing within the specified time
are considered failures. Without a timeout, formatters which do not exit will cause the
formatting check to wait forever.
This check is registered as a commit check with the name "formatting"
and a topic check
with the name "formatting/topic"
.
§Example
{
"name": "formatter name",
"kind": "kind",
"formatter": "/path/to/formatter",
"config_files": [
"path/to/config/file"
],
"fix_message": "instructions for fixing",
"timeout": 10,
}
Trait Implementations§
Source§impl Debug for FormattingConfig
impl Debug for FormattingConfig
Source§impl<'de> Deserialize<'de> for FormattingConfig
impl<'de> Deserialize<'de> for FormattingConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl IntoCheck for FormattingConfig
impl IntoCheck for FormattingConfig
Source§type Check = Formatting
type Check = Formatting
Source§fn into_check(self) -> Self::Check
fn into_check(self) -> Self::Check
Auto Trait Implementations§
impl Freeze for FormattingConfig
impl RefUnwindSafe for FormattingConfig
impl Send for FormattingConfig
impl Sync for FormattingConfig
impl Unpin for FormattingConfig
impl UnwindSafe for FormattingConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more