From dc0a06d1954e3481b2411d0c9aa02ac630a819ee Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Fri, 10 Jun 2022 16:18:22 -0600 Subject: [PATCH] Note on Prettier --- CONTRIBUTING.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9eb2ef48..4ed2cd93 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,7 @@ # Contributing ## Style -Though you'll see a lot of older style callback code, please utilize modern JavaScript. ES6 classes, arrow functions, and builtins. -There is almost never a reason to use `var`. Prefer `const` where you can and and `let` otherwise. -Save with UNIX line feeds, UTF-8 without BOM, and tabs set to 4 spaces. +* In general, [Prettier](https://prettier.io) is used. See the Prettier website for instructions. +* Though you'll see a lot of older style callback code, please utilize modern JavaScript. ES6 classes, arrow functions, and builtins. +* There is almost never a reason to use `var`. Prefer `const` where you can and and `let` otherwise. +* Save with UNIX line feeds, UTF-8 without BOM, and tabs set to 4 spaces.