File tree Expand file tree Collapse file tree 4 files changed +28
-7
lines changed Expand file tree Collapse file tree 4 files changed +28
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
3
+ # Any ignore directives should be uncommented in downstream projects to disable
4
+ # Dependabot updates for the given dependency. Downstream projects will get
5
+ # these updates when the pull request(s) in the appropriate skeleton are merged
6
+ # and Lineage processes these changes.
7
+
3
8
version : 2
4
9
updates :
5
10
- package-ecosystem : " github-actions"
Original file line number Diff line number Diff line change @@ -44,7 +44,17 @@ MD035:
44
44
# Enforce dashes for horizontal rules
45
45
style : " ---"
46
46
47
- # MD046/code-block-style Code block style
47
+ # MD046/code-block-style - Code block style
48
48
MD046 :
49
49
# Enforce the fenced style for code blocks
50
50
style : " fenced"
51
+
52
+ # MD049/emphasis-style - Emphasis style should be consistent
53
+ MD049 :
54
+ # Enforce asterisks as the style to use for emphasis
55
+ style : " asterisk"
56
+
57
+ # MD050/strong-style - Strong style should be consistent
58
+ MD050 :
59
+ # Enforce asterisks as the style to use for strong
60
+ style : " asterisk"
Original file line number Diff line number Diff line change 31
31
32
32
# Text file hooks
33
33
- repo : https://github.com/igorshubovych/markdownlint-cli
34
- rev : v0.30.0
34
+ rev : v0.31.1
35
35
hooks :
36
36
- id : markdownlint
37
37
args :
49
49
50
50
# pre-commit hooks
51
51
- repo : https://github.com/pre-commit/pre-commit
52
- rev : v2.16 .0
52
+ rev : v2.17 .0
53
53
hooks :
54
54
- id : validate_manifest
55
55
@@ -75,15 +75,15 @@ repos:
75
75
76
76
# Python hooks
77
77
- repo : https://github.com/PyCQA/bandit
78
- rev : 1.7.1
78
+ rev : 1.7.2
79
79
hooks :
80
80
- id : bandit
81
81
# Bandit complains about the use of assert() in tests
82
82
exclude : molecule/default/tests
83
83
args :
84
84
- --config=.bandit.yml
85
85
- repo : https://github.com/psf/black
86
- rev : 21.12b0
86
+ rev : 22.1.0
87
87
hooks :
88
88
- id : black
89
89
- repo : https://gitlab.com/pycqa/flake8
@@ -107,14 +107,14 @@ repos:
107
107
108
108
# Ansible hooks
109
109
- repo : https://github.com/ansible-community/ansible-lint
110
- rev : v5.3.2
110
+ rev : v5.4.0
111
111
hooks :
112
112
- id : ansible-lint
113
113
# files: molecule/default/playbook.yml
114
114
115
115
# Terraform hooks
116
116
- repo : https://github.com/antonbabenko/pre-commit-terraform
117
- rev : v1.62.3
117
+ rev : v1.64.0
118
118
hooks :
119
119
- id : terraform_fmt
120
120
- id : terraform_validate
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ rules:
16
16
max-spaces-after: -1
17
17
level: error
18
18
comments: disable
19
+ # yamllint does not like it when you comment out different parts of
20
+ # dictionaries in a list. You can see
21
+ # https://github.com/adrienverge/yamllint/issues/384 for some examples of
22
+ # this behavior.
19
23
comments-indentation: disable
20
24
document-start: disable
21
25
empty-lines:
30
34
new-lines:
31
35
type: unix
32
36
trailing-spaces: disable
37
+ # yamllint doesn't like when we use yes and no for true and false,
38
+ # but that's pretty standard in Ansible.
33
39
truthy: disable
You can’t perform that action at this time.
0 commit comments