mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-04 03:01:25 -06:00
18 lines
440 B
JavaScript
18 lines
440 B
JavaScript
/**
|
|
* @type {import('prettier').Options}
|
|
*/
|
|
module.exports = {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: false,
|
|
trailingComma: "none",
|
|
bracketSpacing: true,
|
|
bracketSameLine: true,
|
|
plugins: [require.resolve("@plasmohq/prettier-plugin-sort-imports")],
|
|
importOrder: ["^@plasmohq/(.*)$", "^~(.*)$", "^[./]"],
|
|
importOrderSeparation: true,
|
|
importOrderSortSpecifiers: true
|
|
}
|