chore(lint): fix failing CI builds (#1589)

This commit is contained in:
Caleb 2018-08-07 19:28:27 -06:00 committed by GitHub
parent 90e1b5c681
commit 324c74061a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,15 +20,15 @@ Example:
```yaml ```yaml
collections: collections:
- label: "Blog" - label: 'Blog'
name: "blog" name: 'blog'
folder: "_posts/blog" folder: '_posts/blog'
create: true create: true
fields: fields:
- {label: "Title", name: "title", widget: "string"} - { label: 'Title', name: 'title', widget: 'string' }
- {label: "Publish Date", name: "date", widget: "datetime"} - { label: 'Publish Date', name: 'date', widget: 'datetime' }
- {label: "Featured Image", name: "thumbnail", widget: "image"} - { label: 'Featured Image', name: 'thumbnail', widget: 'image' }
- {label: "Body", name: "body", widget: "markdown"} - { label: 'Body', name: 'body', widget: 'markdown' }
``` ```
### Filtered folder collections ### Filtered folder collections
@ -74,12 +74,12 @@ Example:
```yaml ```yaml
collections: collections:
- label: "Pages" - label: 'Pages'
name: "pages" name: 'pages'
files: files:
- label: "About Page" - label: 'About Page'
name: "about" name: 'about'
file: "site/content/about.yml" file: 'site/content/about.yml'
fields: fields:
- { label: Title, name: title, widget: string } - { label: Title, name: title, widget: string }
- { label: Intro, name: intro, widget: markdown } - { label: Intro, name: intro, widget: markdown }
@ -90,9 +90,9 @@ collections:
- { label: Name, name: name, widget: string } - { label: Name, name: name, widget: string }
- { label: Position, name: position, widget: string } - { label: Position, name: position, widget: string }
- { label: Photo, name: photo, widget: image } - { label: Photo, name: photo, widget: image }
- label: "Locations Page" - label: 'Locations Page'
name: "locations" name: 'locations'
file: "site/content/locations.yml" file: 'site/content/locations.yml'
fields: fields:
- { label: Title, name: title, widget: string } - { label: Title, name: title, widget: string }
- { label: Intro, name: intro, widget: markdown } - { label: Intro, name: intro, widget: markdown }