pub struct SourcesConfig {
pub enabled: bool,
pub languages: Vec<String>,
}Expand description
The sources: block of .ailint.yaml. Opt-in scanning of source-code
comments extracted by ailint-extractor.
Fields§
§enabled: boolWhen true, discovery walks source files (Rust, TypeScript, JavaScript, Python, Go, Java, C#) and feeds their extracted comments to prose-oriented rules. Off by default: existing users see no change.
languages: Vec<String>If non-empty, only these languages are scanned. Values are the
language ids from [SourceLanguage::as_str] ("rust", "typescript",
"javascript", "python", "go", "java", "csharp"). Empty means
all supported languages.
Trait Implementations§
Source§impl Clone for SourcesConfig
impl Clone for SourcesConfig
Source§fn clone(&self) -> SourcesConfig
fn clone(&self) -> SourcesConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SourcesConfig
impl Debug for SourcesConfig
Source§impl Default for SourcesConfig
impl Default for SourcesConfig
Source§fn default() -> SourcesConfig
fn default() -> SourcesConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourcesConfigwhere
SourcesConfig: Default,
impl<'de> Deserialize<'de> for SourcesConfigwhere
SourcesConfig: Default,
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for SourcesConfig
impl JsonSchema for SourcesConfig
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for SourcesConfig
impl RefUnwindSafe for SourcesConfig
impl Send for SourcesConfig
impl Sync for SourcesConfig
impl Unpin for SourcesConfig
impl UnsafeUnpin for SourcesConfig
impl UnwindSafe for SourcesConfig
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
Mutably borrows from an owned value. Read more