update deps to stay in sync with sl

This commit is contained in:
Cory LaViska
2023-10-12 15:03:38 -04:00
parent f4971456d0
commit 91bfd38a9a
36 changed files with 6032 additions and 3681 deletions

20
prettier.config.js Normal file
View File

@@ -0,0 +1,20 @@
/** @type {import("prettier").Config} */
const config = {
arrowParens: 'avoid',
bracketSpacing: true,
htmlWhitespaceSensitivity: 'css',
insertPragma: false,
bracketSameLine: false,
jsxSingleQuote: false,
printWidth: 120,
proseWrap: 'preserve',
quoteProps: 'as-needed',
requirePragma: false,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'none',
useTabs: false
};
export default config;