You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Component/Yaml/CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,21 @@ CHANGELOG
6
6
7
7
* Added `github` format support & autodetection to render errors as annotations
8
8
when running the YAML linter command in a Github Action environment.
9
+
* Added support for optional YAML lint config from file `lint:yaml --config=.yamllint.yml`.
10
+
11
+
```yml
12
+
yaml-lint:
13
+
format: txt
14
+
includes:
15
+
- src/Resources/config/foo.yml
16
+
- src/Resources/config/bar.yml
17
+
- src/Resources/config/path/
18
+
excludes:
19
+
- src/Resources/config/path/exclude.yml
20
+
```
21
+
22
+
* Added new `lint:yaml dirname --exclude=/dirname/foo.yml --exclude=/dirname/bar.yml` option to exclude one or more specific files from multiple file list.
23
+
* Allow negatable for `--parse-tags|--no-parse-tags` option
0 commit comments