33---
44ssf_node_anchors :
55 defaults :
6+ common :
7+ lint :
8+ line_length :
9+ bugbear : &line_length_bugbear 88
10+ default : &line_length_default 80
611 formula : &formula_default
712 context : &context_default
813 git :
@@ -17,8 +22,8 @@ ssf_node_anchors:
1722 # An alternative method could be to use:
1823 # `git describe --abbrev=0 --tags`
1924 # yamllint disable rule:line-length
20- title : ' feat(tofs): implementation for all file.managed '
21- body : ' * Checked using https://github.com/myii/ssf-formula/pull/54 '
25+ title : ' ci: merge travis matrix, add `salt-lint` & `rubocop` to `lint` job '
26+ body : ' * Automated using https://github.com/myii/ssf-formula/pull/60 '
2227 # yamllint enable rule:line-length
2328 github :
2429 owner : saltstack-formulas
@@ -159,6 +164,14 @@ ssf_node_anchors:
159164 # To deal with excessive instances when mimicking `kitchen list -b`
160165 # If values are set, only use these as commented entries in the matrix
161166 platforms_matrix_commented_includes : []
167+ rubocop :
168+ AllCops : {}
169+ Cops :
170+ Metrics/LineLength :
171+ Bugbear : *line_length_bugbear
172+ Default : *line_length_default
173+ Max : *line_length_bugbear
174+ salt_lint : {}
162175 script_kitchen :
163176 bin : bin/kitchen
164177 cmd : verify
@@ -167,6 +180,7 @@ ssf_node_anchors:
167180 travis :
168181 addons : {}
169182 dist : bionic
183+ use_single_job_for_linters : true
170184 use_cirrus_ci : false
171185 use_tofs : false
172186 yamllint :
@@ -182,6 +196,7 @@ ssf_node_anchors:
182196 default :
183197 - ' *.yaml'
184198 - ' *.yml'
199+ - ' .salt-lint'
185200 - ' .yamllint'
186201 additional_ssf :
187202 - ' *.example'
@@ -207,9 +222,9 @@ ssf_node_anchors:
207222 key-duplicates : {}
208223 # key-ordering: {}
209224 line-length :
210- bugbear : 88
211- default : 80
212- max : 88
225+ bugbear : *line_length_bugbear
226+ default : *line_length_default
227+ max : *line_length_bugbear
213228 # new-line-at-end-of-file: {}
214229 # new-lines: {}
215230 octal-values :
0 commit comments