kopia lustrzana https://github.com/wagtail/wagtail
18 wiersze
378 B
JavaScript
18 wiersze
378 B
JavaScript
/**
|
|
* See https://prettier.io/docs/en/options.html.
|
|
*/
|
|
module.exports = {
|
|
arrowParens: 'always',
|
|
bracketSameLine: false,
|
|
bracketSpacing: true,
|
|
embeddedLanguageFormatting: 'auto',
|
|
endOfLine: 'lf',
|
|
htmlWhitespaceSensitivity: 'css',
|
|
jsxSingleQuote: false,
|
|
printWidth: 80,
|
|
proseWrap: 'preserve',
|
|
quoteProps: 'consistent',
|
|
semi: true,
|
|
singleQuote: true,
|
|
};
|