edq.cli.config

The edq.cli.config package provides tools for working with project configuration options.

This package contains the following CLI tools:


edq.cli.config.list

List the current configuration options.

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

edq.cli.config.set

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

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

edq.cli.config.unset

Unset configuration options. Does nothing if the file at the specified config location doesn't exist.

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