From 1269a639eae4a228be84d6f2eb2fa3cd1a6aae5d Mon Sep 17 00:00:00 2001 From: Alexander Kachkaev Date: Wed, 21 Mar 2018 18:16:29 +0000 Subject: [PATCH] Add prettier config to ensure coherence across contributors --- prettier.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 prettier.config.js diff --git a/prettier.config.js b/prettier.config.js new file mode 100644 index 0000000000..e10a46d932 --- /dev/null +++ b/prettier.config.js @@ -0,0 +1,5 @@ +module.exports = { + semi: false, + singleQuote: true, + trailingComma: 'all', +}