-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from buluma/testing
Merge Testing
- Loading branch information
Showing
10 changed files
with
56 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,5 @@ exclude_paths: | |
- .github | ||
- requirements.yml | ||
|
||
skip_list: | ||
- yaml[truthy] | ||
|
||
enable_list: | ||
- name[prefix] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
name: Pull request | ||
about: Describe the proposed change | ||
|
||
--- | ||
|
||
**Describe the change** | ||
A clear and concise description of what the pull request is. | ||
|
||
**Testing** | ||
In case a feature was added, how were tests performed? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,27 @@ | ||
--- | ||
extends: default | ||
|
||
# https://ansible.readthedocs.io/projects/lint/rules/yaml/#octals | ||
rules: | ||
comments: | ||
# https://github.com/prettier/prettier/issues/6780 | ||
min-spaces-from-content: 1 | ||
# https://github.com/adrienverge/yamllint/issues/384 | ||
comments-indentation: false | ||
document-start: disable | ||
# 160 chars was the default used by old E204 rule, but | ||
# you can easily change it or disable in your .yamllint file. | ||
line-length: | ||
max: 310 | ||
# We are adding an extra space inside braces as that's how prettier does it | ||
# and we are trying not to fight other linters. | ||
braces: | ||
max-spaces-inside: 1 | ||
level: error | ||
brackets: | ||
max-spaces-inside: 1 | ||
level: error | ||
line-length: disable | ||
truthy: | ||
check-keys: false | ||
|
||
ignore: | | ||
.tox/ | ||
.cache/ | ||
min-spaces-inside: 0 # yamllint defaults to 0 | ||
max-spaces-inside: 1 # yamllint defaults to 0 | ||
# key-duplicates: | ||
# forbid-duplicated-merge-keys: true # not enabled by default | ||
octal-values: | ||
forbid-implicit-octal: true # yamllint defaults to false | ||
forbid-explicit-octal: true # yamllint defaults to false | ||
# quoted-strings: | ||
# quote-type: double | ||
# required: only-when-needed |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
ansible-compat == 4.* | ||
ansible-compat == 24.* | ||
molecule == 24.* | ||
molecule-plugins[docker] == 23.* | ||
ansible-lint == 24.* | ||
paramiko == 3.* | ||
# Pinning requests version due to [bug](https://github.com/docker/docker-py/issues/3113) | ||
# requests == 2.28.1 | ||
requests == 2.28.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters