mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
16 lines
242 B
JavaScript
16 lines
242 B
JavaScript
module.exports = {
|
|
arrowParens: "avoid",
|
|
printWidth: 120,
|
|
trailingComma: "all",
|
|
useTabs: false,
|
|
quoteProps: "preserve",
|
|
overrides: [
|
|
{
|
|
files: "README.md",
|
|
options: {
|
|
printWidth: 80,
|
|
},
|
|
},
|
|
],
|
|
};
|