From a2e9edc9407a1ba1b4d391704b5d20af78f6c534 Mon Sep 17 00:00:00 2001 From: Alex Dewar Date: Tue, 28 May 2024 17:02:23 +0100 Subject: [PATCH] Fix: Add default value for project_description Otherwise the markdownlint pre-commit hook fails with the default configuration. --- cookiecutter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookiecutter.json b/cookiecutter.json index faf3ae0..19b6609 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -1,7 +1,7 @@ { "project_name": "My Project", "project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}", - "project_description": "", + "project_description": "[Description for project.]", "author": "Jane Doe", "author_email": "jane_doe@imperial.ac.uk", "use_bsd3_licence": false,