chore: initial extension structure

This commit is contained in:
Steven
2023-08-08 08:20:01 +08:00
parent 9c134f4c8f
commit feadf879dd
30 changed files with 8583 additions and 0 deletions

8
extension/.prettierrc.js Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
printWidth: 140,
useTabs: false,
semi: true,
singleQuote: false,
plugins: [require.resolve("@trivago/prettier-plugin-sort-imports")],
importOrder: ["<BUILTIN_MODULES>", "<THIRD_PARTY_MODULES>", "^@/((?!less).+)", "^[./]", "^(.+).css"],
};