mirror of
https://github.com/VladSez/easy-invoice-pdf
synced 2026-04-21 13:37:40 +00:00
* feat: add debug local storage UI and update README; include new template parameter handling in invoice form * feat: add URL compression logic when generating link to invoice to reduce url length + add unit tests + improved existing e2e tests * ci: remove type check step from unit tests workflow to streamline CI process * test: update e2e tests for Stripe invoice sharing logic and template; increase timeout for visibility checks * test: refactor e2e tests for invoice generation and sharing; update element selectors and enhance URL disallow rules in robots.txt * chore: enhance README with detailed features and update about page references; add GitHub star CTA component * chore: update configuration files for Prettier, run prettify across the project * chore: run dedupe * test: add e2e tests for Open Graph meta tags in invoice templates; verify correct rendering for default and Stripe templates * chore: remove @stagewise/toolbar-next package and related development toolbar component from the project
17 lines
423 B
JavaScript
17 lines
423 B
JavaScript
/** @type {import('prettier').Config} */
|
|
/** @typedef {import("@ianvs/prettier-plugin-sort-imports").PluginConfig} SortImportsConfig*/
|
|
|
|
const config = {
|
|
trailingComma: "all",
|
|
singleQuote: false,
|
|
semi: true,
|
|
arrowParens: "always",
|
|
bracketSpacing: true,
|
|
endOfLine: "lf",
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
plugins: [require.resolve("prettier-plugin-tailwindcss")],
|
|
};
|
|
|
|
module.exports = config;
|