Style Guide

This section describes the coding style rules that apply to our code and that we recommend you to use it also.

In some cases, our style guide diverges from Julia's official Style Guide (Please read it!). All such cases will be explicitly noted and justified.

Our style guide adopts many recommendations from the BlueStyle. Please read the BlueStyle before contributing to this package. If not following, your pull requests may not be accepted.

Info

The style guide is always a work in progress, and not all ComposableCommands code follows the rules. When modifying ComposableCommands, please fix the style violations of the surrounding code (i.e., leave the code tidier than when you started). If large changes are needed, consider separating them into another pull request.

Formatting

Run JuliaFormatter

ComposableCommands uses JuliaFormatter as an auto-formatting tool.

We use the options contained in .JuliaFormatter.toml.

To format your code, cd to the ComposableCommands directory, then run:

julia> using Pkg
julia> Pkg.add("JuliaFormatter") Resolving package versions... Installed Compat ───────── v4.15.0 Installed DataStructures ─ v0.18.20 Installed Crayons ──────── v4.1.1 Installed Tokenize ─────── v0.5.29 Installed URIs ─────────── v1.5.1 Installed CSTParser ────── v3.4.3 Installed CommonMark ───── v0.8.12 Installed JuliaFormatter ─ v1.0.56 Installed Glob ─────────── v1.3.1 Updating `~/work/ComposableCommands.jl/ComposableCommands.jl/docs/Project.toml` [98e50ef6] + JuliaFormatter v1.0.56 Updating `~/work/ComposableCommands.jl/ComposableCommands.jl/docs/Manifest.toml` [00ebfdb7] + CSTParser v3.4.3 [a80b9123] + CommonMark v0.8.12 [34da2185] + Compat v4.15.0 [a8cc5b0e] + Crayons v4.1.1 [864edb3b] + DataStructures v0.18.20 [c27321d9] + Glob v1.3.1 [98e50ef6] + JuliaFormatter v1.0.56 [0796e94c] + Tokenize v0.5.29 [5c2747f8] + URIs v1.5.1 Precompiling project... Glob Compat URIs Compat → CompatLinearAlgebraExt Crayons DataStructures Tokenize CSTParser CommonMark JuliaFormatter 10 dependencies successfully precompiled in 26 seconds. 26 already precompiled.
julia> using JuliaFormatter: format
julia> format("docs")ERROR: IOError: realpath("docs"): no such file or directory (ENOENT)
julia> format("src")ERROR: IOError: realpath("src"): no such file or directory (ENOENT)
julia> format("test")ERROR: IOError: realpath("test"): no such file or directory (ENOENT)
Info

A continuous integration check verifies that all PRs made to ComposableCommands have passed the formatter.

The following sections outline extra style guide points that are not fixed automatically by JuliaFormatter.

Use the Julia extension for Visual Studio Code

Please use Visual Studio Code with the Julia extension to edit, format, and test your code. We do not recommend using other editors to edit your code for the time being.

This extension already has JuliaFormatter integrated. So to format your code, follow the steps listed here.