From 153295f543a95e78d62cf8e0246bc84615cf4da7 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Sirois Date: Mon, 7 Oct 2019 07:21:14 -0400 Subject: [PATCH] chore: force semicolons in articles for consistency --- .prettierrc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.prettierrc b/.prettierrc index ececc3d..3275335 100644 --- a/.prettierrc +++ b/.prettierrc @@ -8,5 +8,13 @@ "singleQuote": false, "tabWidth": 2, "trailingComma": "es5", - "useTabs": false + "useTabs": false, + "overrides": [ + { + "files": "src/content/**/*.md", + "options": { + "semi": true + } + } + ] }