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
collections:
- label: "Blog"
name: "blog"
folder: "_posts/blog"
- label: 'Blog'
name: 'blog'
folder: '_posts/blog'
create: true
fields:
- {label: "Title", name: "title", widget: "string"}
- {label: "Publish Date", name: "date", widget: "datetime"}
- {label: "Featured Image", name: "thumbnail", widget: "image"}
- {label: "Body", name: "body", widget: "markdown"}
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Featured Image', name: 'thumbnail', widget: 'image' }
- { label: 'Body', name: 'body', widget: 'markdown' }
```
### Filtered folder collections
@ -74,32 +74,32 @@ Example:
```yaml
collections:
- label: "Pages"
name: "pages"
- label: 'Pages'
name: 'pages'
files:
- label: "About Page"
name: "about"
file: "site/content/about.yml"
- label: 'About Page'
name: 'about'
file: 'site/content/about.yml'
fields:
- {label: Title, name: title, widget: string}
- {label: Intro, name: intro, widget: markdown}
- { label: Title, name: title, widget: string }
- { label: Intro, name: intro, widget: markdown }
- label: Team
name: team
widget: list
fields:
- {label: Name, name: name, widget: string}
- {label: Position, name: position, widget: string}
- {label: Photo, name: photo, widget: image}
- label: "Locations Page"
name: "locations"
file: "site/content/locations.yml"
- { label: Name, name: name, widget: string }
- { label: Position, name: position, widget: string }
- { label: Photo, name: photo, widget: image }
- label: 'Locations Page'
name: 'locations'
file: 'site/content/locations.yml'
fields:
- {label: Title, name: title, widget: string}
- {label: Intro, name: intro, widget: markdown}
- { label: Title, name: title, widget: string }
- { label: Intro, name: intro, widget: markdown }
- label: Locations
name: locations
widget: list
fields:
- {label: Name, name: name, widget: string}
- {label: Address, name: address, widget: string}
- { label: Name, name: name, widget: string }
- { label: Address, name: address, widget: string }
```