-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
995183d
commit bdc83ba
Showing
45 changed files
with
3,783 additions
and
3,121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
(async () => { | ||
await import("./src/server.mjs"); | ||
await import('./src/server.mjs'); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module.exports = { | ||
printWidth: 80, // Wrap lines at 80 characters | ||
tabWidth: 2, // Use 2 spaces per indentation level | ||
useTabs: false, // Use spaces instead of tabs | ||
semi: true, // Add a semicolon at the end of every statement | ||
singleQuote: true, // Use single quotes instead of double quotes | ||
quoteProps: 'as-needed', // Only add quotes around object properties where required | ||
jsxSingleQuote: false, // Use double quotes in JSX | ||
trailingComma: 'es5', // Add trailing commas where valid in ES5 (objects, arrays, etc.) | ||
bracketSpacing: true, // Print spaces between brackets in object literals | ||
jsxBracketSameLine: false, // Put the `>` of a multi-line JSX element at the end of the last line | ||
arrowParens: 'always', // Always include parentheses around arrow function arguments | ||
htmlWhitespaceSensitivity: 'css', // Respect the default value of CSS display property | ||
endOfLine: 'lf', // Use line feed only (\n) for newlines | ||
embeddedLanguageFormatting: 'auto', // Format embedded code if Prettier can automatically identify it | ||
}; |
Oops, something went wrong.