Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CsvFileType = FileType{ "csv", []string{"csv"}, validator.CsvValidator{}, }
Instance of the FileType object to represent a CSV file
View Source
var FileTypes = []FileType{ JsonFileType, YamlFileType, XmlFileType, TomlFileType, IniFileType, PropFileType, HclFileType, PlistFileType, CsvFileType, }
An array of files types that are supported by the validator
View Source
var HclFileType = FileType{ "hcl", []string{"hcl"}, validator.HclValidator{}, }
Instance of the FileType object to represent a HCL file
View Source
var IniFileType = FileType{ "ini", []string{"ini"}, validator.IniValidator{}, }
Instance of FileType object to represent a Ini file
View Source
var JsonFileType = FileType{ "json", []string{"json"}, validator.JsonValidator{}, }
Instance of the FileType object to represent a JSON file
View Source
var PlistFileType = FileType{ "plist", []string{"plist"}, validator.PlistValidator{}, }
Instance of the FileType object to represent a Plist file
View Source
var PropFileType = FileType{ "properties", []string{"properties"}, validator.PropValidator{}, }
Instance of FileType object to represent a Properties file
View Source
var TomlFileType = FileType{ "toml", []string{"toml"}, validator.TomlValidator{}, }
Instance of FileType object to represent a Toml file
View Source
var XmlFileType = FileType{ "xml", []string{"xml"}, validator.XmlValidator{}, }
Instance of FileType object to represent a XML file
View Source
var YamlFileType = FileType{ "yaml", []string{"yml", "yaml"}, validator.YamlValidator{}, }
Instance of the FileType object to represent a YAML file
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.