Monorepo for Tangled tangled.org
1

Configure Feed

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

core / web / prettier.config.js
337 B 12 lines
1/** @type {import("prettier").Config} */ 2const config = { 3 useTabs: true, 4 singleQuote: true, 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}; 11 12export default config;