Skip to content

Commit 6dfe33e

Browse files
committed
chore(yamllint): add .git/ to ignores [skip ci]
* Automated using myii/ssf-formula#297
1 parent e2bab40 commit 6dfe33e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.yamllint

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22
# vim: ft=yaml
33
---
44
# Extend the `default` configuration provided by `yamllint`
5-
extends: default
5+
extends: 'default'
66

77
# Files to ignore completely
8-
# 1. All YAML files under directory `node_modules/`, introduced during the Travis run
9-
# 2. Any SLS files under directory `test/`, which are actually state files
10-
# 3. Any YAML files under directory `.kitchen/`, introduced during local testing
8+
# 1. All YAML files under directory `.cache/`, introduced during the GitLab CI run
9+
# 2. All YAML files under directory `.git/`
10+
# 3. All YAML files under directory `node_modules/`, introduced during the Travis run
11+
# 4. Any SLS files under directory `test/`, which are actually state files
12+
# 5. Any YAML files under directory `.kitchen/`, introduced during local testing
1113
ignore: |
1214
.cache/
15+
.git/
1316
node_modules/
1417
test/**/states/**/*.sls
1518
.kitchen/

0 commit comments

Comments
 (0)