mirror of
https://github.com/bitwarden/browser
synced 2026-01-31 00:33:33 +00:00
21 lines
357 B
JavaScript
21 lines
357 B
JavaScript
import * as prettierPluginOxc from "@prettier/plugin-oxc";
|
|
|
|
/**
|
|
* @see https://prettier.io/docs/configuration
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
plugins: [prettierPluginOxc],
|
|
printWidth: 100,
|
|
overrides: [
|
|
{
|
|
files: "*.mdx",
|
|
options: {
|
|
proseWrap: "always",
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|