shoelace/prettier.config.js

21 wiersze
430 B
JavaScript
Czysty Zwykły widok Historia

2023-10-12 17:56:11 +00:00
/** @type {import("prettier").Config} */
const config = {
2020-07-15 21:30:37 +00:00
arrowParens: 'avoid',
bracketSpacing: true,
htmlWhitespaceSensitivity: 'css',
insertPragma: false,
2022-01-01 01:39:16 +00:00
bracketSameLine: false,
2020-07-15 21:30:37 +00:00
jsxSingleQuote: false,
printWidth: 120,
proseWrap: 'preserve',
quoteProps: 'as-needed',
requirePragma: false,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'none',
useTabs: false
};
2023-10-12 17:56:11 +00:00
export default config;