Project

Configures the project - that is, the location of our file tree, and which files are included for editing.

Field Description
include List of inclusion and exclusion glob patterns. Exclusion paterns start with a !. By default, all files in the root are included, unless excluded in a .gitignore, .ignore or git exclude file.
root Project root directory

Example

(
    project: (
        include: [
            "!target/**",
            "**/*.rs",
        ],
        root: "./",
    )
)