Initial plasmo setup

This commit is contained in:
Jorrin
2024-01-07 17:30:00 +01:00
parent d050a96792
commit 9dc8681ad2
25 changed files with 5100 additions and 758 deletions

20
.prettierrc.mjs Normal file
View File

@@ -0,0 +1,20 @@
/**
* @type {import('prettier').Options}
*/
export default {
printWidth: 120,
trailingComma: 'all',
singleQuote: true,
importOrder: [
'<BUILTIN_MODULES>', // Node.js built-in modules
'<THIRD_PARTY_MODULES>', // Imports not matched by other special words or groups.
'', // Empty line
'^@plasmo/(.*)$',
'',
'^@plasmohq/(.*)$',
'',
'^~(.*)$',
'',
'^[./]',
],
};