kopia lustrzana https://github.com/shoelace-style/shoelace
21 wiersze
430 B
JavaScript
21 wiersze
430 B
JavaScript
|
/** @type {import("prettier").Config} */
|
||
|
const config = {
|
||
|
arrowParens: 'avoid',
|
||
|
bracketSpacing: true,
|
||
|
htmlWhitespaceSensitivity: 'css',
|
||
|
insertPragma: false,
|
||
|
bracketSameLine: false,
|
||
|
jsxSingleQuote: false,
|
||
|
printWidth: 120,
|
||
|
proseWrap: 'preserve',
|
||
|
quoteProps: 'as-needed',
|
||
|
requirePragma: false,
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
tabWidth: 2,
|
||
|
trailingComma: 'none',
|
||
|
useTabs: false
|
||
|
};
|
||
|
|
||
|
export default config;
|