pipeline status version license

darklua

Transform Lua 5.1 and Roblox Lua scripts using rules.

Installation

darklua is a command line tool that can be installed using cargo.

cargo install darklua

If you want to use the lastest darklua available, install it using the git url:

cargo install --git https://gitlab.com/seaofvoices/darklua.git

Usage

The following section will detail the different commands of darklua. You can also get a list of the available commands and options using the command line tool itself, simply run: darklua help To get help on a specific command, simply append --help (or -h) to the command name. For example, to get help on the minify command: darklua minify --help

Process

The process command is similar to the minify command: it takes an input path and generates code at the output path. This command will apply rules (the default rules or the one given in the configuration file) to each Lua file.

``` darklua process

optional arguments: -c, --config-path Path to a configuration file ```

Example

If you have a src folder that contains a bunch of Lua scripts (files ending with .lua), you can process all the files with the default configuration (or with the configuration file located in the same folder where you are running the command) into a new folder called processed-src using the following command:

darklua process src processed-src

If a configuration file is found in the folder where the command is run, darklua will automatically use it. If your configuration file is not named .darklua.json or .darklua.json5, or not located in the folder where you are running the command, you must specify it with the --config-path argument:

``` darklua process src processed-src --config-path ./path/config.json

or the shorter version:

darklua process src processed-src -c ./path/config.json ```

Minify

This command reads Lua code and reformats it to reduce the size of the code, measured in total bytes. The input path can be a single file name or a directory name. Given a directory, darklua will find all Lua files under that directory and output them following the same hierarchy.

``` darklua minify

optional arguments: -c, --config-path Path to a configuration file ```

Example

If you have a src folder that contains a bunch of Lua scripts (files ending with .lua), you can generate the minified version of these Lua scripts into a new folder called minified-src using the following command:

darklua minify src minified-src

To specify the configuration file location, simply run:

``` darklua minify src minified-src --config-path ./path/config.json

or the shorter version:

darklua minify src minified-src -c ./path/config.json ```

Configuration file

Some commands can be modified using the configuration file. darklua supports both configuration file written in the json or json5 standard file formats. When running darklua, if the directory in which the darklua command is executed contains a file named .darklua.json or .darklua.json5, it will automatically read the file to get the configuration values unless the --config-path option is given to override it.

Any missing field will be replaced with its default value.

json5 { // when outputting code, darklua will wrap the code on a new line after // this amount of characters. column_span: 80, // put the rules that you want to execute when calling the process command. // If you do not provide this field, the default list of rules is going to // be executed. process: ["remove_empty_do"], }

Rule format

Rules can be written in two different formats: The shortest format consists of simply providing the rule name. Using this format, the default rule properties will be used.

json "remove_empty_do"

If a rule can be configured with properties (specific values that tweak the behavior of the rule), the table format can be used to override each properties. The rule name must be specified with a field named rule. Then, simply enumerate the property name associated with its value.

json5 { rule: "the_rule_name", my_property_name: 50 }

For example, the two following examples define two configuration files that will execute the same rule, but written in the two different formats.

json5 { process: ["remove_empty_do"], }

json5 { process: [{ rule: "remove_empty_do" }], }

Information on the built-in rules and their configuration properties can be found here.

License

darklua is available under the MIT license. See LICENSE.txt for details.