Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var CsvFileType = FileType{ "csv", tools.ArrToMap("csv"), validator.CsvValidator{}, }
Instance of the FileType object to represent a CSV file
var EditorConfigFileType = FileType{ "editorconfig", tools.ArrToMap("editorconfig"), validator.EditorConfigValidator{}, }
Instance of the FileType object to represent an EDITORCONFIG file
var EnvFileType = FileType{ "env", tools.ArrToMap("env"), validator.EnvValidator{}, }
Instance of the FileType object to represent a ENV file
var FileTypes = []FileType{ JSONFileType, YAMLFileType, XMLFileType, TomlFileType, IniFileType, PropFileType, HclFileType, PlistFileType, CsvFileType, HoconFileType, EnvFileType, EditorConfigFileType, ToonFileType, }
An array of files types that are supported by the validator
var HclFileType = FileType{ "hcl", tools.ArrToMap("hcl"), validator.HclValidator{}, }
Instance of the FileType object to represent a HCL file
var HoconFileType = FileType{ "hocon", tools.ArrToMap("hocon"), validator.HoconValidator{}, }
Instance of the FileType object to represent a HOCON file
var IniFileType = FileType{ "ini", tools.ArrToMap("ini"), validator.IniValidator{}, }
Instance of FileType object to represent a Ini file
var JSONFileType = FileType{ "json", tools.ArrToMap("json"), validator.JSONValidator{}, }
Instance of the FileType object to represent a JSON file
var PlistFileType = FileType{ "plist", tools.ArrToMap("plist"), validator.PlistValidator{}, }
Instance of the FileType object to represent a Plist file
var PropFileType = FileType{ "properties", tools.ArrToMap("properties"), validator.PropValidator{}, }
Instance of FileType object to represent a Properties file
var TomlFileType = FileType{ "toml", tools.ArrToMap("toml"), validator.TomlValidator{}, }
Instance of FileType object to represent a Toml file
var ToonFileType = FileType{ "toon", tools.ArrToMap("toon"), validator.ToonValidator{}, }
Instance of the FileType object to represent a TOON file
var XMLFileType = FileType{ "xml", tools.ArrToMap("xml"), validator.XMLValidator{}, }
Instance of FileType object to represent a XML file
var YAMLFileType = FileType{ "yaml", tools.ArrToMap("yml", "yaml"), validator.YAMLValidator{}, }
Instance of the FileType object to represent a YAML file
Functions ¶
This section is empty.