├── .github └── workflows │ ├── tests-in-centos.yml │ └── tests.yml ├── .gitlab-ci.yml ├── LICENSE.MIT ├── MANIFEST.in ├── README.rst ├── azure-pipelines.yml ├── mypy.ini ├── package.spec.in ├── requirements.txt ├── rules ├── BlockedModules.py ├── DebugRule.py ├── FileHasValidNameRule.py ├── FileIsSmallEnoughRule.py ├── LoopIsRecommendedRule.py ├── NoEmptyDataFilesRule.py ├── TaskHasValidNameRule.py ├── TasksFileHasValidNameRule.py ├── VarsInVarsFilesHaveValidNamesRule.py ├── VarsShouldNotBeUsedRule.py └── __init__.py ├── setup.cfg ├── setup.py ├── tests ├── TestBlockedModules.py ├── TestDebugRule.py ├── TestFileHasValidNameRule.py ├── TestFileIsSmallEnoughRule.py ├── TestLoopIsRecommendedRule.py ├── TestNoEmptyDataFilesRule.py ├── TestTaskHasValidNameRule.py ├── TestTasksFileHasValidNameRule.py ├── TestVarsInVarsFilesHaveValidNamesRule.py ├── TestVarsShouldNotBeUsedRule.py ├── __init__.py ├── common │ ├── __init__.py │ ├── base.py │ ├── constants.py │ ├── datatypes.py │ ├── runner.py │ ├── test_base.py │ ├── test_runner.py │ ├── test_utils.py │ ├── testcases.py │ └── utils.py ├── requirements.txt └── res │ ├── BlockedModules │ ├── ng │ │ ├── 0 │ │ │ └── playbook.yml │ │ └── 1 │ │ │ ├── conf.json │ │ │ └── playbook.yml │ └── ok │ │ ├── 0 │ │ └── playbook.yml │ │ └── 1 │ │ ├── conf.json │ │ ├── playbook.yml │ │ └── roles │ │ └── ping │ ├── DebugRule │ ├── ng │ │ ├── 0 │ │ │ ├── conf.json │ │ │ └── playbook.yml │ │ ├── 1 │ │ │ ├── conf.json │ │ │ └── playbook.yml │ │ └── 2 │ │ │ ├── env.json │ │ │ └── playbook.yml │ ├── ok │ │ ├── 0 │ │ │ └── playbook.yml │ │ ├── 1 │ │ │ ├── playbook.yml │ │ │ └── roles │ │ │ │ └── ping │ │ └── 2 │ │ │ ├── conf.json │ │ │ └── playbook.yml │ └── roles │ ├── FileHasValidNameRule │ ├── ng │ │ ├── 0 │ │ │ └── ping_ng-0.yml │ │ ├── 1 │ │ │ └── ng-1.yml │ │ ├── 2 │ │ │ └── ng-2.yml │ │ ├── 3 │ │ │ └── ng 3.yml │ │ └── 4 │ │ │ ├── conf.json │ │ │ └── playbook_4.yml │ └── ok │ │ ├── 0 │ │ ├── ping_ok_1.yml │ │ └── roles │ │ │ └── ping │ │ ├── 1 │ │ ├── conf.json │ │ ├── ping-ok-1.yml │ │ └── roles │ │ │ └── ping │ │ └── 2 │ │ ├── conf.json │ │ ├── ping_ok_2.yml │ │ └── roles │ │ └── ping │ ├── FileIsSmallEnoughRule │ ├── ng │ │ └── 0 │ │ │ ├── conf.json │ │ │ └── playbook.yml │ └── ok │ │ ├── 0 │ │ └── playbook.yml │ │ └── 1 │ │ ├── playbook.yml │ │ └── roles │ │ └── ping │ ├── LoopIsRecommendedRule │ ├── ng │ │ └── 0 │ │ │ └── playbook.yml │ └── ok │ │ └── 0 │ │ └── playbook.yml │ ├── NoEmptyDataFilesRule │ ├── ng │ │ └── 0 │ │ │ ├── playbook.yml │ │ │ └── roles │ │ │ └── no_empty_data_files_rule_ng_1 │ └── ok │ │ └── 0 │ │ ├── playbook.yml │ │ └── roles │ │ └── no_empty_data_files_rule_ok_1 │ ├── TaskHasValidNameRule │ ├── ng │ │ ├── 0 │ │ │ └── playbook.yml │ │ └── 1 │ │ │ └── playbook.yml │ └── ok │ │ ├── 0 │ │ └── plays_ok_0.yml │ │ ├── 1 │ │ └── playbook.yml │ │ └── 2 │ │ ├── conf.json │ │ └── playbook.yml │ ├── TasksFileHasValidNameRule │ ├── ng │ │ ├── 0 │ │ │ ├── playbook.yml │ │ │ └── tasks │ │ ├── 1 │ │ │ ├── playbook.yml │ │ │ └── tasks │ │ └── 2 │ │ │ ├── playbook.yml │ │ │ └── tasks │ ├── ok │ │ ├── 0 │ │ │ ├── playbook.yml │ │ │ └── tasks │ │ ├── 1 │ │ │ ├── playbook.yml │ │ │ └── tasks │ │ └── 2 │ │ │ ├── conf.json │ │ │ ├── playbook.yml │ │ │ └── tasks │ └── tasks │ │ ├── ng _2.yml │ │ ├── ng-1.yml │ │ ├── ng_三.yml │ │ ├── ok.yml │ │ └── ok_1.yml │ ├── VariableHasValidNameRule │ ├── ng │ │ ├── 0.yml │ │ ├── 1.yml │ │ ├── c │ │ │ └── 1.json │ │ └── roles │ │ │ ├── ping │ │ │ └── ping_0 │ │ │ ├── defaults │ │ │ └── main.yml │ │ │ └── tasks │ │ │ ├── assertions.yml │ │ │ ├── debug.yml │ │ │ ├── do_ping.yml │ │ │ └── main.yml │ └── ok │ │ ├── .coverage │ │ ├── 0.yml │ │ ├── 1.yml │ │ ├── inventory │ │ └── group_vars │ │ │ └── localhost.yml │ │ └── roles │ │ └── ping │ ├── VarsInVarsFilesHaveValidNamesRule │ ├── ng │ │ ├── 0 │ │ │ ├── group_vars │ │ │ │ └── localhost.yml │ │ │ └── playbook.yml │ │ ├── 1 │ │ │ ├── playbook.yml │ │ │ └── roles │ │ │ │ └── ping │ │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ │ └── tasks │ │ │ │ ├── assertions.yml │ │ │ │ ├── debug.yml │ │ │ │ ├── do_ping.yml │ │ │ │ └── main.yml │ │ └── 2 │ │ │ ├── conf.json │ │ │ ├── group_vars │ │ │ └── localhost.yml │ │ │ └── playbook.yml │ └── ok │ │ ├── 0 │ │ ├── group_vars │ │ │ └── localhost.yml │ │ └── playbook.yml │ │ └── 1 │ │ ├── playbook.yml │ │ └── roles │ │ └── ping │ ├── VarsShouldNotBeUsedRule │ ├── ng │ │ ├── 0 │ │ │ └── playbook.yml │ │ └── 1 │ │ │ ├── playbook.yml │ │ │ └── vars │ │ │ └── VarsShouldNotBeUsedRule_1.yml │ └── ok │ │ └── 0 │ │ └── plays_ok_0.yml │ ├── common │ └── ok_1.yml │ ├── inventories │ └── VariablesNamingRule │ │ ├── ng │ │ └── 1 │ │ │ ├── group_vars │ │ │ └── all.yml │ │ │ ├── host_vars │ │ │ └── localhost_0.yml │ │ │ └── hosts │ │ └── ok │ │ └── 1 │ │ ├── group_vars │ │ └── all.yml │ │ ├── host_vars │ │ └── localhost_0.yml │ │ └── hosts │ ├── playbooks │ ├── ping_ok_1.yml │ ├── play_using_role_0.yml │ └── plays_ok_0.yml │ ├── roles │ ├── no_empty_data_files_rule_ng_1 │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ └── vars │ │ │ └── main.yml │ ├── no_empty_data_files_rule_ok_1 │ ├── ping │ │ ├── defaults │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── assertions.yml │ │ │ ├── debug.yml │ │ │ ├── do_ping.yml │ │ │ └── main.yml │ ├── ping_with_vars │ │ ├── defaults │ │ │ └── main.yml │ │ └── tasks │ │ │ ├── assertions.yml │ │ │ ├── debug.yml │ │ │ ├── do_ping.yml │ │ │ └── main.yml │ ├── variable_naming_rule_test_ng_1 │ │ ├── defaults │ │ │ └── main.yml │ │ ├── tasks │ │ └── vars │ │ │ └── main.yml │ └── variable_naming_rule_test_ok_1 │ │ ├── defaults │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ └── vars │ │ └── main.yml │ └── tasks │ └── simple_ping_1.yml └── tox.ini /.github/workflows/tests-in-centos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/.github/workflows/tests-in-centos.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/README.rst -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/mypy.ini -------------------------------------------------------------------------------- /package.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/package.spec.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/requirements.txt -------------------------------------------------------------------------------- /rules/BlockedModules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/BlockedModules.py -------------------------------------------------------------------------------- /rules/DebugRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/DebugRule.py -------------------------------------------------------------------------------- /rules/FileHasValidNameRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/FileHasValidNameRule.py -------------------------------------------------------------------------------- /rules/FileIsSmallEnoughRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/FileIsSmallEnoughRule.py -------------------------------------------------------------------------------- /rules/LoopIsRecommendedRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/LoopIsRecommendedRule.py -------------------------------------------------------------------------------- /rules/NoEmptyDataFilesRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/NoEmptyDataFilesRule.py -------------------------------------------------------------------------------- /rules/TaskHasValidNameRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/TaskHasValidNameRule.py -------------------------------------------------------------------------------- /rules/TasksFileHasValidNameRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/TasksFileHasValidNameRule.py -------------------------------------------------------------------------------- /rules/VarsInVarsFilesHaveValidNamesRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/VarsInVarsFilesHaveValidNamesRule.py -------------------------------------------------------------------------------- /rules/VarsShouldNotBeUsedRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/rules/VarsShouldNotBeUsedRule.py -------------------------------------------------------------------------------- /rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/setup.py -------------------------------------------------------------------------------- /tests/TestBlockedModules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestBlockedModules.py -------------------------------------------------------------------------------- /tests/TestDebugRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestDebugRule.py -------------------------------------------------------------------------------- /tests/TestFileHasValidNameRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestFileHasValidNameRule.py -------------------------------------------------------------------------------- /tests/TestFileIsSmallEnoughRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestFileIsSmallEnoughRule.py -------------------------------------------------------------------------------- /tests/TestLoopIsRecommendedRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestLoopIsRecommendedRule.py -------------------------------------------------------------------------------- /tests/TestNoEmptyDataFilesRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestNoEmptyDataFilesRule.py -------------------------------------------------------------------------------- /tests/TestTaskHasValidNameRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestTaskHasValidNameRule.py -------------------------------------------------------------------------------- /tests/TestTasksFileHasValidNameRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestTasksFileHasValidNameRule.py -------------------------------------------------------------------------------- /tests/TestVarsInVarsFilesHaveValidNamesRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestVarsInVarsFilesHaveValidNamesRule.py -------------------------------------------------------------------------------- /tests/TestVarsShouldNotBeUsedRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/TestVarsShouldNotBeUsedRule.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/__init__.py -------------------------------------------------------------------------------- /tests/common/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/base.py -------------------------------------------------------------------------------- /tests/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/constants.py -------------------------------------------------------------------------------- /tests/common/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/datatypes.py -------------------------------------------------------------------------------- /tests/common/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/runner.py -------------------------------------------------------------------------------- /tests/common/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/test_base.py -------------------------------------------------------------------------------- /tests/common/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/test_runner.py -------------------------------------------------------------------------------- /tests/common/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/test_utils.py -------------------------------------------------------------------------------- /tests/common/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/testcases.py -------------------------------------------------------------------------------- /tests/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/common/utils.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/res/BlockedModules/ng/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/BlockedModules/ng/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/BlockedModules/ng/1/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/BlockedModules/ng/1/conf.json -------------------------------------------------------------------------------- /tests/res/BlockedModules/ng/1/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/BlockedModules/ok/0/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/BlockedModules/ok/1/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/BlockedModules/ok/1/conf.json -------------------------------------------------------------------------------- /tests/res/BlockedModules/ok/1/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/BlockedModules/ok/1/playbook.yml -------------------------------------------------------------------------------- /tests/res/BlockedModules/ok/1/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../../roles/ping -------------------------------------------------------------------------------- /tests/res/DebugRule/ng/0/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/DebugRule/ng/0/conf.json -------------------------------------------------------------------------------- /tests/res/DebugRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/DebugRule/ng/1/conf.json: -------------------------------------------------------------------------------- 1 | ../0/conf.json -------------------------------------------------------------------------------- /tests/res/DebugRule/ng/1/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/1/playbook.yml -------------------------------------------------------------------------------- /tests/res/DebugRule/ng/2/env.json: -------------------------------------------------------------------------------- 1 | {"_ANSIBLE_LINT_RULE_DEBUG": "1"} -------------------------------------------------------------------------------- /tests/res/DebugRule/ng/2/playbook.yml: -------------------------------------------------------------------------------- 1 | ../0/playbook.yml -------------------------------------------------------------------------------- /tests/res/DebugRule/ok/0/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/DebugRule/ok/1/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/ping_ok_1.yml -------------------------------------------------------------------------------- /tests/res/DebugRule/ok/1/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../roles/ping -------------------------------------------------------------------------------- /tests/res/DebugRule/ok/2/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/DebugRule/ok/2/conf.json -------------------------------------------------------------------------------- /tests/res/DebugRule/ok/2/playbook.yml: -------------------------------------------------------------------------------- 1 | ../0/playbook.yml -------------------------------------------------------------------------------- /tests/res/DebugRule/roles: -------------------------------------------------------------------------------- 1 | ../roles/ -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ng/0/ping_ng-0.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ng/1/ng-1.yml: -------------------------------------------------------------------------------- 1 | ../0/ping_ng-0.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ng/2/ng-2.yml: -------------------------------------------------------------------------------- 1 | ../0/ping_ng-0.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ng/3/ng 3.yml: -------------------------------------------------------------------------------- 1 | ../0/ping_ng-0.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ng/4/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/FileHasValidNameRule/ng/4/conf.json -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ng/4/playbook_4.yml: -------------------------------------------------------------------------------- 1 | ../0/ping_ng-0.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/0/ping_ok_1.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/ping_ok_1.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/0/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../../roles/ping -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/1/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/FileHasValidNameRule/ok/1/conf.json -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/1/ping-ok-1.yml: -------------------------------------------------------------------------------- 1 | ../0/ping_ok_1.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/1/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../../roles/ping -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/2/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/FileHasValidNameRule/ok/2/conf.json -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/2/ping_ok_2.yml: -------------------------------------------------------------------------------- 1 | ../0/ping_ok_1.yml -------------------------------------------------------------------------------- /tests/res/FileHasValidNameRule/ok/2/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../../roles/ping -------------------------------------------------------------------------------- /tests/res/FileIsSmallEnoughRule/ng/0/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/FileIsSmallEnoughRule/ng/0/conf.json -------------------------------------------------------------------------------- /tests/res/FileIsSmallEnoughRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/FileIsSmallEnoughRule/ok/0/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/FileIsSmallEnoughRule/ok/1/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/ping_ok_1.yml -------------------------------------------------------------------------------- /tests/res/FileIsSmallEnoughRule/ok/1/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../../roles/ping -------------------------------------------------------------------------------- /tests/res/LoopIsRecommendedRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/LoopIsRecommendedRule/ng/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/LoopIsRecommendedRule/ok/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/LoopIsRecommendedRule/ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/NoEmptyDataFilesRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/NoEmptyDataFilesRule/ng/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/NoEmptyDataFilesRule/ng/0/roles/no_empty_data_files_rule_ng_1: -------------------------------------------------------------------------------- 1 | ../../../../roles/no_empty_data_files_rule_ng_1 -------------------------------------------------------------------------------- /tests/res/NoEmptyDataFilesRule/ok/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/NoEmptyDataFilesRule/ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/NoEmptyDataFilesRule/ok/0/roles/no_empty_data_files_rule_ok_1: -------------------------------------------------------------------------------- 1 | ../../../../roles/no_empty_data_files_rule_ok_1 -------------------------------------------------------------------------------- /tests/res/TaskHasValidNameRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TaskHasValidNameRule/ng/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/TaskHasValidNameRule/ng/1/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/2/playbook.yml -------------------------------------------------------------------------------- /tests/res/TaskHasValidNameRule/ok/0/plays_ok_0.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/TaskHasValidNameRule/ok/1/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TaskHasValidNameRule/ok/1/playbook.yml -------------------------------------------------------------------------------- /tests/res/TaskHasValidNameRule/ok/2/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TaskHasValidNameRule/ok/2/conf.json -------------------------------------------------------------------------------- /tests/res/TaskHasValidNameRule/ok/2/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TaskHasValidNameRule/ok/2/playbook.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TasksFileHasValidNameRule/ng/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ng/0/tasks: -------------------------------------------------------------------------------- 1 | ../../tasks -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ng/1/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TasksFileHasValidNameRule/ng/1/playbook.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ng/1/tasks: -------------------------------------------------------------------------------- 1 | ../../tasks -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ng/2/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TasksFileHasValidNameRule/ng/2/playbook.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ng/2/tasks: -------------------------------------------------------------------------------- 1 | ../../tasks -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ok/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TasksFileHasValidNameRule/ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ok/0/tasks: -------------------------------------------------------------------------------- 1 | ../../tasks -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ok/1/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TasksFileHasValidNameRule/ok/1/playbook.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ok/1/tasks: -------------------------------------------------------------------------------- 1 | ../../tasks -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ok/2/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TasksFileHasValidNameRule/ok/2/conf.json -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ok/2/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/TasksFileHasValidNameRule/ok/2/playbook.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/ok/2/tasks: -------------------------------------------------------------------------------- 1 | ../../tasks -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/tasks/ng _2.yml: -------------------------------------------------------------------------------- 1 | ok_1.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/tasks/ng-1.yml: -------------------------------------------------------------------------------- 1 | ok_1.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/tasks/ng_三.yml: -------------------------------------------------------------------------------- 1 | ok_1.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/tasks/ok.yml: -------------------------------------------------------------------------------- 1 | ok_1.yml -------------------------------------------------------------------------------- /tests/res/TasksFileHasValidNameRule/tasks/ok_1.yml: -------------------------------------------------------------------------------- 1 | - name: Run Ping 2 | ping: 3 | -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ng/0.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/1.yml: -------------------------------------------------------------------------------- 1 | ../ok/1.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/c/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ng/c/1.json -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../roles/ping -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/roles/ping_0/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ng/roles/ping_0/defaults/main.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/assertions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/assertions.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/debug.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/do_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/do_ping.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ng/roles/ping_0/tasks/main.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ok/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ok/.coverage -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ok/0.yml: -------------------------------------------------------------------------------- 1 | ../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ok/1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ok/1.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ok/inventory/group_vars/localhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VariableHasValidNameRule/ok/inventory/group_vars/localhost.yml -------------------------------------------------------------------------------- /tests/res/VariableHasValidNameRule/ok/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../roles/ping -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/0/group_vars/localhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ng/0/group_vars/localhost.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/1/playbook.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/defaults/main.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/assertions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/assertions.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/debug.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/do_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/do_ping.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ng/1/roles/ping/tasks/main.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/2/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ng/2/conf.json -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/2/group_vars/localhost.yml: -------------------------------------------------------------------------------- 1 | ../../../ok/0/group_vars/localhost.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ng/2/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../ok/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ok/0/group_vars/localhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsInVarsFilesHaveValidNamesRule/ok/0/group_vars/localhost.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ok/0/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ok/1/playbook.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/ping_ok_1.yml -------------------------------------------------------------------------------- /tests/res/VarsInVarsFilesHaveValidNamesRule/ok/1/roles/ping: -------------------------------------------------------------------------------- 1 | ../../../../roles/ping_with_vars/ -------------------------------------------------------------------------------- /tests/res/VarsShouldNotBeUsedRule/ng/0/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsShouldNotBeUsedRule/ng/0/playbook.yml -------------------------------------------------------------------------------- /tests/res/VarsShouldNotBeUsedRule/ng/1/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/VarsShouldNotBeUsedRule/ng/1/playbook.yml -------------------------------------------------------------------------------- /tests/res/VarsShouldNotBeUsedRule/ng/1/vars/VarsShouldNotBeUsedRule_1.yml: -------------------------------------------------------------------------------- 1 | items: 2 | - pong 3 | -------------------------------------------------------------------------------- /tests/res/VarsShouldNotBeUsedRule/ok/0/plays_ok_0.yml: -------------------------------------------------------------------------------- 1 | ../../../playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/common/ok_1.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/res/inventories/VariablesNamingRule/ng/1/group_vars/all.yml: -------------------------------------------------------------------------------- 1 | ../host_vars/localhost_0.yml -------------------------------------------------------------------------------- /tests/res/inventories/VariablesNamingRule/ng/1/host_vars/localhost_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/inventories/VariablesNamingRule/ng/1/host_vars/localhost_0.yml -------------------------------------------------------------------------------- /tests/res/inventories/VariablesNamingRule/ng/1/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/inventories/VariablesNamingRule/ng/1/hosts -------------------------------------------------------------------------------- /tests/res/inventories/VariablesNamingRule/ok/1/group_vars/all.yml: -------------------------------------------------------------------------------- 1 | ../host_vars/localhost_0.yml -------------------------------------------------------------------------------- /tests/res/inventories/VariablesNamingRule/ok/1/host_vars/localhost_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/inventories/VariablesNamingRule/ok/1/host_vars/localhost_0.yml -------------------------------------------------------------------------------- /tests/res/inventories/VariablesNamingRule/ok/1/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/inventories/VariablesNamingRule/ok/1/hosts -------------------------------------------------------------------------------- /tests/res/playbooks/ping_ok_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/playbooks/ping_ok_1.yml -------------------------------------------------------------------------------- /tests/res/playbooks/play_using_role_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/playbooks/play_using_role_0.yml -------------------------------------------------------------------------------- /tests/res/playbooks/plays_ok_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/playbooks/plays_ok_0.yml -------------------------------------------------------------------------------- /tests/res/roles/no_empty_data_files_rule_ng_1/defaults/main.yml: -------------------------------------------------------------------------------- 1 | # test 2 | --- 3 | -------------------------------------------------------------------------------- /tests/res/roles/no_empty_data_files_rule_ng_1/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /tests/res/roles/no_empty_data_files_rule_ng_1/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /tests/res/roles/no_empty_data_files_rule_ng_1/tasks/main.yml: -------------------------------------------------------------------------------- 1 | - name: Run Ping 2 | ping: 3 | -------------------------------------------------------------------------------- /tests/res/roles/no_empty_data_files_rule_ng_1/vars/main.yml: -------------------------------------------------------------------------------- 1 | ../defaults/main.yml -------------------------------------------------------------------------------- /tests/res/roles/no_empty_data_files_rule_ok_1: -------------------------------------------------------------------------------- 1 | variable_naming_rule_test_ok_1 -------------------------------------------------------------------------------- /tests/res/roles/ping/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping/defaults/main.yml -------------------------------------------------------------------------------- /tests/res/roles/ping/tasks/assertions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping/tasks/assertions.yml -------------------------------------------------------------------------------- /tests/res/roles/ping/tasks/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping/tasks/debug.yml -------------------------------------------------------------------------------- /tests/res/roles/ping/tasks/do_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping/tasks/do_ping.yml -------------------------------------------------------------------------------- /tests/res/roles/ping/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping/tasks/main.yml -------------------------------------------------------------------------------- /tests/res/roles/ping_with_vars/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping_with_vars/defaults/main.yml -------------------------------------------------------------------------------- /tests/res/roles/ping_with_vars/tasks/assertions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping_with_vars/tasks/assertions.yml -------------------------------------------------------------------------------- /tests/res/roles/ping_with_vars/tasks/debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping_with_vars/tasks/debug.yml -------------------------------------------------------------------------------- /tests/res/roles/ping_with_vars/tasks/do_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping_with_vars/tasks/do_ping.yml -------------------------------------------------------------------------------- /tests/res/roles/ping_with_vars/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/ping_with_vars/tasks/main.yml -------------------------------------------------------------------------------- /tests/res/roles/variable_naming_rule_test_ng_1/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/variable_naming_rule_test_ng_1/defaults/main.yml -------------------------------------------------------------------------------- /tests/res/roles/variable_naming_rule_test_ng_1/tasks: -------------------------------------------------------------------------------- 1 | ../variable_naming_rule_test_ok_1/tasks -------------------------------------------------------------------------------- /tests/res/roles/variable_naming_rule_test_ng_1/vars/main.yml: -------------------------------------------------------------------------------- 1 | ../defaults/main.yml -------------------------------------------------------------------------------- /tests/res/roles/variable_naming_rule_test_ok_1/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/roles/variable_naming_rule_test_ok_1/defaults/main.yml -------------------------------------------------------------------------------- /tests/res/roles/variable_naming_rule_test_ok_1/tasks/main.yml: -------------------------------------------------------------------------------- 1 | - name: Run Ping 2 | ping: 3 | -------------------------------------------------------------------------------- /tests/res/roles/variable_naming_rule_test_ok_1/vars/main.yml: -------------------------------------------------------------------------------- 1 | ../defaults/main.yml -------------------------------------------------------------------------------- /tests/res/tasks/simple_ping_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tests/res/tasks/simple_ping_1.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssato/ansible-lint-custom-rules/HEAD/tox.ini --------------------------------------------------------------------------------