Files
yamllint/yamllint
sedrubal c7d04ad7e7 Add support for exclusion patterns
Add argument -e/--e PATTERN to exclude files or directories when walking
through a file system tree and searching for yaml files.

E.g.

```
yamllint -e s .
```

in this tree:

```
.
├── a.yaml
├── empty-dir
├── empty.yml
├── non-ascii
│   └── utf-8
├── no-yaml.json
├── s
│   └── s
│       └── s
│           └── s
│               └── s
│                   └── s
│                       └── s
│                           └── s
│                               └── s
│                                   └── s
│                                       └── s
│                                           └── s
│                                               └── s
│                                                   └── s
│                                                       └── s
│                                                           └── file.yaml
├── sub
│   └── ok.yaml
└── warn.yaml
```

ignores the directory `./s/`.

And `yamllint -e warn.yaml -e non-ascii/utf-8 .` ignores both,
`warn.yaml` and `non-ascii/utf-8`.
2017-05-28 22:50:02 +02:00
..
2017-04-25 17:09:50 +02:00
2017-03-21 16:00:58 +07:00
2017-05-28 22:50:02 +02:00
2017-01-11 13:52:19 -05:00