lms.cli.config

This package provides tools for working with project configuration options.

This package contains the following CLI tools:


lms.cli.config.list

List the current configuration options.

usage: python3 -m lms.cli.config.list [-h] [--version] [--include-cli]
                                      [--show-origin] [--skip-header]

lms.cli.config.set

Update configuration options. The file at the specified config location will be created if it doesn't exist.

usage: python3 -m lms.cli.config.set [-h] [--version]
                                     [--local | --project | --global | --file ]
                                     = [= ...]

lms.cli.config.unset

Unset the first matching instance of a configuration option. Does nothing if there is no matching config.

usage: python3 -m lms.cli.config.unset [-h] [--version]
                                       [--local | --project | --global | --file ]
                                       KEY [KEY ...]
1"""
2This package provides tools for working with project configuration options.
3"""