ValeStyle
The ValeStyle class does something.
less than a minute
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
1. Parsing a string for links
This example demonstrates something.
2. Filtering a list of links by position
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)