[READ-ONLY] Mirror of https://github.com/flo-bit/youtube-party-dj. democratic youtube player, everyone can vote and add songs, uni project, made with uix
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #61 from flo-bit/tw_prettier

Create prettier.config.js

author
Florian
committer
GitHub
date (Jul 4, 2024, 12:43 PM +0200) commit 7ad0f47c parent 72dd93b0
+12
+12
prettier.config.js
··· 1 + /** 2 + * @see https://prettier.io/docs/en/configuration.html 3 + * @type {import("prettier").Config} 4 + */ 5 + const config = { 6 + trailingComma: "es5", 7 + tabWidth: 4, 8 + semi: false, 9 + singleQuote: true, 10 + }; 11 + 12 + export default config;