├── .dictionary ├── .github └── settings.yml ├── .gitignore ├── .gitsv └── config.yml ├── .lycheeignore ├── .markdownlint.yml ├── .pre-commit-hooks.yaml ├── .prettierignore ├── .woodpecker ├── build-container.yml ├── build-package.yml ├── docs.yml ├── lint.yml ├── notify.yml └── test.yml ├── CONTRIBUTING.md ├── Containerfile.multiarch ├── LICENSE ├── Makefile ├── README.md ├── ansiblelater ├── __init__.py ├── __main__.py ├── candidate.py ├── exceptions.py ├── logger.py ├── rule.py ├── rules │ ├── CheckBecomeUser.py │ ├── CheckBracesSpaces.py │ ├── CheckChangedInWhen.py │ ├── CheckCommandHasChanges.py │ ├── CheckCommandInsteadOfArgument.py │ ├── CheckCommandInsteadOfModule.py │ ├── CheckCompareToEmptyString.py │ ├── CheckCompareToLiteralBool.py │ ├── CheckDeprecated.py │ ├── CheckDeprecatedBareVars.py │ ├── CheckFQCNBuiltin.py │ ├── CheckFilePermissionMissing.py │ ├── CheckFilePermissionOctal.py │ ├── CheckFilterSeparation.py │ ├── CheckGitHasVersion.py │ ├── CheckInstallUseLatest.py │ ├── CheckKeyOrder.py │ ├── CheckLiteralBoolFormat.py │ ├── CheckLocalAction.py │ ├── CheckMetaChangeFromDefault.py │ ├── CheckMetaMain.py │ ├── CheckNameFormat.py │ ├── CheckNamedTask.py │ ├── CheckNativeYaml.py │ ├── CheckNestedJinja.py │ ├── CheckRelativeRolePaths.py │ ├── CheckScmInSrc.py │ ├── CheckShellInsteadCommand.py │ ├── CheckTaskSeparation.py │ ├── CheckUniqueNamedTask.py │ ├── CheckWhenFormat.py │ ├── CheckYamlColons.py │ ├── CheckYamlDocumentEnd.py │ ├── CheckYamlDocumentStart.py │ ├── CheckYamlEmptyLines.py │ ├── CheckYamlFile.py │ ├── CheckYamlHasContent.py │ ├── CheckYamlHyphens.py │ ├── CheckYamlIndent.py │ └── CheckYamlOctalValues.py ├── settings.py ├── test │ ├── __init__.py │ └── unit │ │ ├── __init__.py │ │ ├── test_logger.py │ │ └── test_settings.py └── utils │ ├── __init__.py │ └── yamlhelper.py ├── docs ├── config.yaml ├── content │ ├── _index.md │ ├── build_rules │ │ ├── _index.md │ │ ├── candidates.md │ │ └── rule.md │ ├── configuration │ │ ├── _index.md │ │ ├── cli.md │ │ ├── defaults.md │ │ ├── excludes.md │ │ └── pre-commit.md │ ├── included_rules │ │ └── _index.md │ ├── setup │ │ ├── _index.md │ │ ├── pip.md │ │ └── source.md │ └── usage │ │ └── _index.md ├── data │ └── menu │ │ ├── main.yml │ │ └── more.yml └── static │ ├── .htaccess │ ├── socialmedia.svg │ └── socialmedia2.png ├── poetry.lock ├── pyproject.toml └── renovate.json /.dictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.dictionary -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitsv/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.gitsv/config.yml -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- 1 | https://hub.docker.com/r/thegeeklab/* 2 | -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.tpl.md 2 | LICENSE 3 | -------------------------------------------------------------------------------- /.woodpecker/build-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.woodpecker/build-container.yml -------------------------------------------------------------------------------- /.woodpecker/build-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.woodpecker/build-package.yml -------------------------------------------------------------------------------- /.woodpecker/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.woodpecker/docs.yml -------------------------------------------------------------------------------- /.woodpecker/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.woodpecker/lint.yml -------------------------------------------------------------------------------- /.woodpecker/notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.woodpecker/notify.yml -------------------------------------------------------------------------------- /.woodpecker/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/.woodpecker/test.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Containerfile.multiarch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/Containerfile.multiarch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/README.md -------------------------------------------------------------------------------- /ansiblelater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/__init__.py -------------------------------------------------------------------------------- /ansiblelater/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/__main__.py -------------------------------------------------------------------------------- /ansiblelater/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/candidate.py -------------------------------------------------------------------------------- /ansiblelater/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/exceptions.py -------------------------------------------------------------------------------- /ansiblelater/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/logger.py -------------------------------------------------------------------------------- /ansiblelater/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rule.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckBecomeUser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckBecomeUser.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckBracesSpaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckBracesSpaces.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckChangedInWhen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckChangedInWhen.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckCommandHasChanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckCommandHasChanges.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckCommandInsteadOfArgument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckCommandInsteadOfArgument.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckCommandInsteadOfModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckCommandInsteadOfModule.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckCompareToEmptyString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckCompareToEmptyString.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckCompareToLiteralBool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckCompareToLiteralBool.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckDeprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckDeprecated.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckDeprecatedBareVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckDeprecatedBareVars.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckFQCNBuiltin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckFQCNBuiltin.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckFilePermissionMissing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckFilePermissionMissing.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckFilePermissionOctal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckFilePermissionOctal.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckFilterSeparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckFilterSeparation.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckGitHasVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckGitHasVersion.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckInstallUseLatest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckInstallUseLatest.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckKeyOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckKeyOrder.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckLiteralBoolFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckLiteralBoolFormat.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckLocalAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckLocalAction.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckMetaChangeFromDefault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckMetaChangeFromDefault.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckMetaMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckMetaMain.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckNameFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckNameFormat.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckNamedTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckNamedTask.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckNativeYaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckNativeYaml.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckNestedJinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckNestedJinja.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckRelativeRolePaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckRelativeRolePaths.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckScmInSrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckScmInSrc.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckShellInsteadCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckShellInsteadCommand.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckTaskSeparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckTaskSeparation.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckUniqueNamedTask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckUniqueNamedTask.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckWhenFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckWhenFormat.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlColons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlColons.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlDocumentEnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlDocumentEnd.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlDocumentStart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlDocumentStart.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlEmptyLines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlEmptyLines.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlFile.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlHasContent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlHasContent.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlHyphens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlHyphens.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlIndent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlIndent.py -------------------------------------------------------------------------------- /ansiblelater/rules/CheckYamlOctalValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/rules/CheckYamlOctalValues.py -------------------------------------------------------------------------------- /ansiblelater/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/settings.py -------------------------------------------------------------------------------- /ansiblelater/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansiblelater/test/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansiblelater/test/unit/test_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/test/unit/test_logger.py -------------------------------------------------------------------------------- /ansiblelater/test/unit/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/test/unit/test_settings.py -------------------------------------------------------------------------------- /ansiblelater/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/utils/__init__.py -------------------------------------------------------------------------------- /ansiblelater/utils/yamlhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/ansiblelater/utils/yamlhelper.py -------------------------------------------------------------------------------- /docs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/config.yaml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/build_rules/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Build your own rules 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/build_rules/candidates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/build_rules/candidates.md -------------------------------------------------------------------------------- /docs/content/build_rules/rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/build_rules/rule.md -------------------------------------------------------------------------------- /docs/content/configuration/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/configuration/_index.md -------------------------------------------------------------------------------- /docs/content/configuration/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/configuration/cli.md -------------------------------------------------------------------------------- /docs/content/configuration/defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/configuration/defaults.md -------------------------------------------------------------------------------- /docs/content/configuration/excludes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/configuration/excludes.md -------------------------------------------------------------------------------- /docs/content/configuration/pre-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/configuration/pre-commit.md -------------------------------------------------------------------------------- /docs/content/included_rules/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/included_rules/_index.md -------------------------------------------------------------------------------- /docs/content/setup/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Setup 3 | --- 4 | -------------------------------------------------------------------------------- /docs/content/setup/pip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/setup/pip.md -------------------------------------------------------------------------------- /docs/content/setup/source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/setup/source.md -------------------------------------------------------------------------------- /docs/content/usage/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/content/usage/_index.md -------------------------------------------------------------------------------- /docs/data/menu/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/data/menu/main.yml -------------------------------------------------------------------------------- /docs/data/menu/more.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/data/menu/more.yml -------------------------------------------------------------------------------- /docs/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/static/.htaccess -------------------------------------------------------------------------------- /docs/static/socialmedia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/static/socialmedia.svg -------------------------------------------------------------------------------- /docs/static/socialmedia2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/docs/static/socialmedia2.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegeeklab/ansible-later/HEAD/renovate.json --------------------------------------------------------------------------------