Skip to content

Commit 77d4587

Browse files
committed
chore(yamllint): update ignored paths and add octal-values [skip ci]
* Automated using #59
1 parent 289c7a4 commit 77d4587

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.yamllint

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ extends: default
77
# Files to ignore completely
88
# 1. All YAML files under directory `node_modules/`, introduced during the Travis run
99
# 2. Any SLS files under directory `test/`, which are actually state files
10-
# 3. All Jinja templates under `ssf/files/` (result in `yamllint` syntax errors)
10+
# 3. Any YAML files under directory `.kitchen/`, introduced during local testing
11+
# 4. All Jinja templates under `ssf/files/` (result in `yamllint` syntax errors)
1112
# Not disabling via. `*.yml` since we may end up with non-Jinja YAML files here
1213
ignore: |
1314
node_modules/
1415
test/**/states/**/*.sls
16+
.kitchen/
1517
ssf/files/default/.cirrus.yml
1618
ssf/files/default/.travis.yml
1719
ssf/files/default/.yamllint
@@ -40,3 +42,6 @@ rules:
4042
# Increase from default of `80`
4143
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
4244
max: 88
45+
octal-values:
46+
forbid-implicit-octal: true
47+
forbid-explicit-octal: true

0 commit comments

Comments
 (0)