From 85074a234d2460a9cb1e7424436c55d55ceefc0b Mon Sep 17 00:00:00 2001 From: CJ Wong Date: Fri, 26 Mar 2021 02:43:39 -0700 Subject: [PATCH] Add header and footer for yaml linting. Add additional spaces before comments. --- config.yaml.example | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/config.yaml.example b/config.yaml.example index 7b69afb..56128ed 100644 --- a/config.yaml.example +++ b/config.yaml.example @@ -1,9 +1,9 @@ # Copy this file to config.yaml to use. - +--- calendars: # Change 'Calendar 1' to the name of the calendar to read Calendar 1: - tabs: [ # List all tabs that should be linked to the calendar. + tabs: [ # List all tabs that should be linked to the calendar. 'Sheet Tab 1', ] @@ -13,12 +13,13 @@ spreadsheet: tabs: # Change 'Sheet Tab 1' to the name of the spreadsheet sheet/tab Sheet Tab 1: - aliases: [ # Add aliases as necessary, one per line. + aliases: [ # Add aliases as necessary, one per line. 'alias 1', 'alias 2', ] - start: # Don't change 'start'. - cell: B3 # First top-left cell in the sheet. + start: # Don't change 'start'. + cell: B3 # First top-left cell in the sheet. # Both year and month determine the row offset. year: 2019 month: 9 +...