Scroll to navigation

ANSIBLE-LINT(1) User Commands ANSIBLE-LINT(1)

NAME

ansible-lint - lint tool for Ansible playbooks

DESCRIPTION

usage: ansible-lint [-h] [-P | -L | -T]

[-f {brief,full,md,json,codeclimate,quiet,pep8,sarif}]
[--sarif-file SARIF_FILE] [-q] [--profile {min,basic,moderate,safety,shared,production}] [-p] [--project-dir PROJECT_DIR] [-r RULESDIR] [-R] [-s] [--write [WRITE_LIST]] [--show-relpath] [-t TAGS] [-v] [-x SKIP_LIST] [--generate-ignore] [-w WARN_LIST] [--enable-list ENABLE_LIST] [--nocolor] [--force-color] [--exclude EXCLUDE_PATHS [EXCLUDE_PATHS ...]] [-c CONFIG_FILE] [-i IGNORE_FILE] [--offline] [--version] [lintables ...]

positional arguments:

One or more files or paths. When missing it will enable auto-detection mode.

options:

show this help message and exit
List all profiles, no formatting options available.
List all the rules. For listing rules only the following formats for argument -f are supported: {brief, full, md} with 'brief' as default.
List all the tags and the rules they cover. Increase the verbosity level with `-v` to include 'opt-in' tag and its rules.
stdout formatting, json being an alias for codeclimate. (default: None)
SARIF output file
quieter, reduce verbosity, can be specified twice.
Specify which rules profile to be used.
parseable output, same as '-f pep8'
Location of project/repository, autodetected based on location of configuration file.
Specify custom rule directories. Add -R to keep using embedded rules from /usr/lib/python3/dist-packages/ansiblelint/rules
Keep default rules when using -r
Return non-zero exit code on warnings as well as errors
Allow ansible-lint to reformat YAML files and run rule transforms (Reformatting YAML files standardizes spacing, quotes, etc. A rule transform can fix or simplify fixing issues identified by that rule). You can limit the effective rule transforms (the 'write_list') by passing a keywords 'all' or 'none' or a comma separated list of rule ids or rule tags. YAML reformatting happens whenever '--write' or '--write=' is used. '--write' and '--write=all' are equivalent: they allow all transforms to run. The effective list of transforms comes from 'write_list' in the config file, followed whatever '--write' args are provided on the commandline. '--write=none' resets the list of transforms to allow reformatting YAML without running any of the transforms (ie '--write=none,rule-id' will ignore write_list in the config file and only run the rule-id transform).
Display path relative to CWD
only check rules whose id/tags match these values
Increase verbosity level (-vv for more)
only check rules whose id/tags do not match these values. e.g: --skip-list=name,run-once
Generate a text file '.ansible-lint-ignore' that ignores all found violations. Each line contains filename and rule id separated by a space.
only warn about these rules, unless overridden in config file. Current version default value is: experimental, jinja[spacing], fqcn[deep]
activate optional rules by their tag name
disable colored output, same as NO_COLOR=1
Force colored output, same as FORCE_COLOR=1
path to directories or files to skip. This option is repeatable.
Specify configuration file to use. By default it will look for '.ansible-lint', '.config/ansible-lint.yml', or '.config/ansible-lint.yaml'
Specify ignore file to use. By default it will look for '.ansible-lint-ignore' or '.config/ansible-lintignore.txt'
Disable installation of requirements.yml and schema refreshing

--version

June 2023 ansible-lint