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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for FormattingConfig

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl IntoCheck for FormattingConfig

§

type Check = Formatting

The check parsed by this configuration.
source§

fn into_check(self) -> Self::Check

Create a new instance of the check from the configuration.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,