mirror of
https://github.com/LukeHagar/prettier-plugin-openapi.git
synced 2025-12-06 04:21:03 +00:00
29 lines
473 B
JavaScript
29 lines
473 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'es5',
|
|
singleQuote: true,
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
endOfLine: 'lf',
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
bracketSameLine: false,
|
|
quoteProps: 'as-needed',
|
|
overrides: [
|
|
{
|
|
files: '*.json',
|
|
options: {
|
|
printWidth: 120,
|
|
},
|
|
},
|
|
{
|
|
files: '*.md',
|
|
options: {
|
|
printWidth: 100,
|
|
proseWrap: 'always',
|
|
},
|
|
},
|
|
],
|
|
};
|