Monorepo for Tangled tangled.org
2

Configure Feed

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

core / web / prettier.config.js
366 B 13 lines
1/** @type {import("prettier").Config} */ 2const config = { 3 useTabs: true, 4 singleQuote: false, 5 trailingComma: "none", 6 printWidth: 100, 7 plugins: ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"], 8 overrides: [{ files: "*.svelte", options: { parser: "svelte" } }], 9 tailwindStylesheet: "./src/app.css", 10 tailwindFunctions: ["tv"] 11}; 12 13export default config;