diff options
Diffstat (limited to 'scripts/lint-docs-blueprints.rb')
-rwxr-xr-x | scripts/lint-docs-blueprints.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/lint-docs-blueprints.rb b/scripts/lint-docs-blueprints.rb index 35e0013cb34..d0a0a6a05de 100755 --- a/scripts/lint-docs-blueprints.rb +++ b/scripts/lint-docs-blueprints.rb @@ -22,7 +22,7 @@ def extract_front_matter(path) end class BlueprintFrontMatter - STATUSES = %w[proposed accepted ongoing implemented rejected] + STATUSES = %w[proposed accepted ongoing implemented postponed rejected] attr_reader :errors @@ -32,6 +32,8 @@ class BlueprintFrontMatter end def validate + return if @metadata['redirect_to'] + validate_status validate_authors validate_creation_date |