UNPKG

create-mellowtel-extension

Version:

Create a new Mellowtel browser extension with one command

27 lines (26 loc) 558 B
/** * @type {import('prettier').Options} */ export default { printWidth: 80, tabWidth: 2, useTabs: false, semi: false, singleQuote: false, trailingComma: "none", bracketSpacing: true, bracketSameLine: true, plugins: ["@ianvs/prettier-plugin-sort-imports"], importOrder: [ "<BUILTIN_MODULES>", // Node.js built-in modules "<THIRD_PARTY_MODULES>", // Imports not matched by other special words or groups. "", // Empty line "^@plasmo/(.*)$", "", "^@plasmohq/(.*)$", "", "^~(.*)$", "", "^[./]" ] }