Gura Dart parser
This repository contains the implementation of a Gura configuration format parser for Dart, written in pure Dart. (Compliant with spec version 1.0.0).
Installation
dart pub add gura
Usage
Import package:gura/gura.dart
and use the [parse()], [parseFile()], or [parseFileSync()]
functions to convert your Gura input into a Map<String, dynamic>
for use in your code.
Examples
In the event that any of the library function names (parse
, parseFile
, etc.)
conflict with functions from another library, alias gura and use qualified function
calls via the alias:
Contributing
- Fork this project
- Create new branch for your feature
- Commit and push your changes
- Submit a pull request
Sadly, Dart's selection of tools for maintaining a consistent code style do not
allow for much customization in a way that supports my personal code style, and
I don't like the opinionated style of dartfmt
, so if you choose to contribute,
please do your best to maintain code style consistent with the rest of the repo
in your contributions. I'll review PRs to ensure this.
Tests
To run all tests, run dart test
in the project root.