editor-config

Crates.ioeditor-config
lib.rseditor-config
version0.2.9
sourcesrc
created_at2024-02-14 01:32:25.776575
updated_at2024-04-30 01:24:37.718546
descriptionEditorconfig implementation in Rust
homepage
repositoryhttps://github.com/Selyss/editor-config
max_upload_size
id1139308
size18,141
Selyss (Selyss)

documentation

README

An editorconfig parsing library.

This crate serves as a thin wrapper over the editorconfig specification.

Example

[*]
end_of_line = lf

Retrieving a property value can be done by providing a section name and property name.

use editor_config::parser::EditorConfig;


let editorconfig_path = "tests/test_data/.editorconfig";

let editorconfig = EditorConfig::from_file(editorconfig_path).unwrap();

assert_eq!(editorconfig.get_property("*", "end_of_line"), Some("lf"));

This crate only parses keys and returns the values, it does not impose any implementation details on the edit.

The editorconfig file must be provided to the parser, it does not search the file system.

Unknown/invalid properties or property values are ignored as per the core library specification. If the parser encounters one, it will return None.

If a property value is returned, it has been checked and narrowed to confirm it is valid.

Commit count: 40

cargo fmt