mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* Update websocket docs & jsdoc * Add info about user-specific data in ws * Document FileSink * Docs for happydom test * Updates
16 lines
239 B
JavaScript
16 lines
239 B
JavaScript
module.exports = {
|
|
arrowParens: "avoid",
|
|
printWidth: 120,
|
|
trailingComma: "all",
|
|
useTabs: false,
|
|
quoteProps: "preserve",
|
|
overrides: [
|
|
{
|
|
files: ["*.md"],
|
|
options: {
|
|
printWidth: 80,
|
|
},
|
|
},
|
|
],
|
|
};
|