Skip to content

Commit 72c6d48

Browse files
committedNov 13, 2024
bump: update deps
1 parent 81e8230 commit 72c6d48

9 files changed

+60
-195
lines changed
 

‎.prettierrc.cjs

-19
This file was deleted.

‎.prettierrc.mjs

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
* @type {import('prettier').Options}
3+
*/
4+
export default {
5+
printWidth: 80,
6+
tabWidth: 2,
7+
useTabs: false,
8+
semi: false,
9+
singleQuote: false,
10+
trailingComma: "none",
11+
bracketSpacing: true,
12+
bracketSameLine: true,
13+
plugins: ["@ianvs/prettier-plugin-sort-imports"],
14+
importOrder: [
15+
"<BUILTIN_MODULES>", // Node.js built-in modules
16+
"<THIRD_PARTY_MODULES>", // Imports not matched by other special words or groups.
17+
"", // Empty line
18+
"^@plasmo/(.*)$",
19+
"",
20+
"^@plasmohq/(.*)$",
21+
"",
22+
"^@plasmo-static-common/(.*)$",
23+
"",
24+
"^~(.*)$",
25+
"",
26+
"^[./]",
27+
"",
28+
"__plasmo_import_module__",
29+
"__plasmo_mount_content_script__"
30+
]
31+
}

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"vp": "pnpm --filter \"./packages/**\" --parallel -r exec pnpm version --commit-hooks false --git-tag-version false --workspaces-update"
1212
},
1313
"devDependencies": {
14-
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
14+
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
1515
"esbuild": "0.24.0",
1616
"prettier": "3.3.3",
1717
"turbo": "2.2.3",

‎packages/bms

Submodule bms updated 1 file

‎packages/edge-addons-api

0 commit comments

Comments
 (0)