We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you have the name[prefix] rule enabled and run the fix it will auto capitalize the prefix if the next character after prefix is not capitalized.
ansible-lint --version 6.22.0 using Ansible-core:2.15.6 ansible-compat:4.1.10 ruamel-yaml:0.18.5 ruamel-yaml-clib:0.2.8
test.yml
- name: test | not cap ansible.builtin.debug: msg: "not cap" - name: test | Cap ansible.builtin.debug: msg: "Cap"
will turn into
- name: Test | not cap ansible.builtin.debug: msg: "not cap" - name: test | Cap ansible.builtin.debug: msg: "Cap"
- name: test | Not cap ansible.builtin.debug: msg: "not cap" - name: test | Cap ansible.builtin.debug: msg: "Cap"
The text was updated successfully, but these errors were encountered:
audgirka
Successfully merging a pull request may close this issue.
Summary
If you have the name[prefix] rule enabled and run the fix it will auto capitalize the prefix if the next character after prefix is not capitalized.
Issue Type
OS / ENVIRONMENT
ansible-lint --version 6.22.0 using Ansible-core:2.15.6 ansible-compat:4.1.10 ruamel-yaml:0.18.5 ruamel-yaml-clib:0.2.8
STEPS TO REPRODUCE
test.yml
will turn into
Desired Behavior
test.yml
Actual Behavior
The text was updated successfully, but these errors were encountered: