Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: replace wrong occurrences of ignore_list with skip_list in rules #2388

Merged
merged 1 commit into from
Sep 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/name.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This rule can produce messages such:
- `name[play]` - All plays should be named.

If you want to ignore some of the messages above, you can add any of them to
the `ignore_list`.
the `skip_list`.

## Problematic code

Expand Down
8 changes: 4 additions & 4 deletions src/ansiblelint/rules/syntax_check.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ loaded by Ansible. This is often achieved by editing the inventory file and/or
If undefined variables cause the failure, you can use the jinja
`default()` filter to provide fallback values, like in the example below.

This rule is among the few `unskippable` rules that cannot be added
to `ignore_list` or `warn_list`. One possible workaround is to add the entire
file to the `exclude_list`. This is a valid approach for special cases, like
testing fixtures that are invalid on purpose.
This rule is among the few `unskippable` rules that cannot be added to
`skip_list` or `warn_list`. One possible workaround is to add the entire file
to the `exclude_list`. This is a valid approach for special cases, like testing
fixtures that are invalid on purpose.

One of the most common sources of errors is failure to assert the presence of
various variables at the beginning of the playbook.
Expand Down