ValeStyle

The ValeStyle class does something.

Definition

Source Code

# Licensed under the MIT License.

using module .\ValeRule.psm1

class ValeStyle {
    [string]$Name
    [string]$Path
    [ValeRule[]]$Rules

    ValeStyle([string]$Name, [string]$Path) {
        $this.Name = $Name
        $this.Path = $Path
        $this.Rules = @()
    }
}


# Copyright (c) Microsoft Corporation.

An instance of the ValeStyle class does something.

Examples

This example demonstrates something.

This example demonstrates something.

Constructors

ValeStyle()
Initializes a new instance of the ValeStyle class.

Methods

Properties

Last modified March 10, 2023: (GH-71) Document Vale classes (ad1e42a)