From d85f09cbed5f3d2501f791e689011ae127df1cbb Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sun, 9 Jan 2022 20:33:53 +0100 Subject: build: Add prettier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit eslint will also enforce prettier rules, so there is no need to call prettier separately in CI. Signed-off-by: Kristóf Marussy --- prettier.config.cjs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 prettier.config.cjs (limited to 'prettier.config.cjs') diff --git a/prettier.config.cjs b/prettier.config.cjs new file mode 100644 index 0000000..de2f53c --- /dev/null +++ b/prettier.config.cjs @@ -0,0 +1,4 @@ +module.exports = { + singleQuote: true, + trailingComma: 'all', +}; -- cgit v1.2.3-54-g00ecf