Struct cargo_culture_kit::HasContributingFile[][src]

pub struct HasContributingFile;

Rule that asserts a good Rust project: "Should have a CONTRIBUTING file in the project directory."

Justification

A CONTRIBUTING file is a starting point for would-be collaborators popularized in the open-source world. Even for closed-source projects, a CONTRIBUTING file can be a gateway to developer-focused guidance, and thus useful for on-boarding in a more targeted manner than the general README.

Trait Implementations

impl Debug for HasContributingFile
[src]

Formats the value using the given formatter. Read more

impl Default for HasContributingFile
[src]

Returns the "default value" for a type. Read more

impl Rule for HasContributingFile
[src]

The central tenet of this Rule. Serves as a unique identifier for Rule instances, as well as a human-readable summary of what this Rule means for a given project. Read more

Does the Rust project found at cargo_manifest_path uphold this Rule, as summarized in the description? Read more

Auto Trait Implementations