generated from justinmahar/react-kindling
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prettierrc.js
16 lines (16 loc) · 1 KB
/
.prettierrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// [lock-all/] 🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫🚫
/**
* Prettier Configuration: https://prettier.io/docs/en/configuration.html
* Prettier Options: https://prettier.io/docs/en/options.html
*
* For a post on how everything is set up, see: https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project
*
* IMPORTANT: When adding to this file, please paste a corresponding comment from Prettier's docs.
*/
module.exports = {
semi: true, // Print semicolons at the ends of statements.
trailingComma: 'all', // Print trailing commas wherever possible when multi-line. (A single-line array, for example, never gets trailing commas.)
singleQuote: true, // Use single quotes instead of double quotes.
printWidth: 120, // Specify the line length that the printer will wrap on.
tabWidth: 2, // Specify the number of spaces per indentation-level.
};